diff --git a/.gitignore b/.gitignore index 68bcbc4..99c8c74 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,6 @@ /tmp/ # Temporary files generated by Tree-sitter +/build/ log.html +tree-sitter-elixir.wasm diff --git a/README.md b/README.md new file mode 100644 index 0000000..1f54164 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# tree-sitter-elixir + +[![Test](https://github.com/jonatanklosko/tree-sitter-elixir/actions/workflows/test.yml/badge.svg)](https://github.com/jonatanklosko/tree-sitter-elixir/actions/workflows/test.yml) + +Elixir grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter). + +## Development + +See [the docs](./docs.md) for development notes. diff --git a/docs.md b/docs.md new file mode 100644 index 0000000..6d014ef --- /dev/null +++ b/docs.md @@ -0,0 +1,271 @@ +# Development notes + +## Acknowledgements + +While this parser is written from scratch, there were previous efforts that made +for a helpful reference: + +* [tree-sitter-elixir](https://github.com/ananthakumaran/tree-sitter-elixir) developed + by [@ananthakumaran](https://github.com/ananthakumaran) +* [tree-sitter-elixir](https://github.com/wingyplus/tree-sitter-elixir) developed + by [@wingyplus](https://github.com/wingyplus) and [@Tuxified](https://github.com/Tuxified) + +## The AST + +When it comes to AST Elixir is a rather specific language due to its macro system. +From the perspective of our parser, the important implication is that a seemingly +invalid code can be a valid syntax when used in a macro (or just put in the `quote` +expression). For example: + +```elixir +quote do + def Bar.foo(x), definitely_not_do: 1 + %{a} + */2 +end +``` + +As opposed to other languages, core constructs like `def`, `if` and `for` are not +particularly special either, since they are itself regular functions (or macros rather). +Consequently they can be used "improperly" in a quoted expression, as shown above. + +Consequently, to correctly parse all Elixir code, we need the AST to closely match +the Elixir AST. See [Elixir / Syntax reference](https://hexdocs.pm/elixir/syntax-reference.html) +for more details. + +Whenever possible possible, we try using a more specific nodes (like binary/unary operator), +but only to the extent that doesn't lose on generality. To get a sense of what the AST looks +like, have a look at the tests in `test/corpus/`. + +## Getting started with Tree-sitter + +For official notes see the official guide on [Creating parsers](https://tree-sitter.github.io/tree-sitter/creating-parsers). + +Essentially, we define relevant language rules in `grammar.js`, based on which +Tree-sitter generates parser code (under `src/`). In some cases, we want to write +custom C++ code for tokenizing specific character sequences (in `src/scanner.cc`). + +The grammar rules may often conflict with each other, meaning that the given +sequence of tokens has multiple valid interpretations given one _token_ of lookahead. +In many conflicts we always want to pick one interpretation over the other and we can +do this by assigning different precedence and associativity to relevant rules, which +tells the parser which way to go. + +For example given `expression1 * expression2 • *` the next token we _see_ ahead is `*`. +The parser needs to decide whether `expression1 * expression2` is a complete binary operator +node, or if it should await the next expression and interpret it as `expression1 * (expression2 * expression3)`. +Since the `*` operator is left-associative we can use `prec.left` on the corresponding +grammar rule, to inform the parser how to resolve this conflict. + +However, in some cases looking at one token ahead isn't enough, in which case we can add +the conflicting rules to the `conflicts` list in the grammar. Whenever the parser stumbles +upon this conflict it uses its GLR algorithm, basically considering both interpretations +until one leads to parsing error. If both paths parse correctly (there's a genuine ambiguity) +we can use dynamic precedence (`prec.dynamic`) to decide on the preferred path. + +## Using the CLI + +### tree-sitter + +```shell +# See CLI usage +npx tree-sitter -h + +# Generate the the parser code based on grammar.js +npx tree-sitter generate + +# Run tests +npx tree-sitter test +npx tree-sitter test --filter "access syntax" + +# Parse a specific file +npx tree-sitter parse tmp/test.ex +npx tree-sitter parse -x tmp/test.ex + +# Parse codebase to verify syntax coverage +npx tree-sitter parse --quiet --stat 'tmp/elixir/**/*.ex*' +``` + +Whenever you make a change to `grammar.js` remember to run `generate`, +before verifying the result. To test custom code, create an Elixir file +like `tmp/test.ex` and use `parse` on it. The `-x` flag prints out the +source grouped into AST nodes as XML. + +### Additional scripts + +```shell +# Format the grammar.js file +npm run format + +# Run parser against the given repository +scripts/parse_repo.sh elixir-lang/elixir +``` + +## Implementation notes + +This section covers some of the implementation decisions that have a more +elaborated rationale. The individual subsections are referenced in the code. + +### Ref 1. External scanner for quoted content + +We want to scan quoted content as a single token, but it requires lookahead. +Specifically the `#` character may no longer be quoted content if followed by `{`. +Also, inside heredoc string tokenizing `"` (or `'`) requires lookahead to know +if it's already part of the end delimiter or not. + +Since we need to use external scanner, we need to know the delimiter type. +One way to achieve this is using external scanner to scan the start delimiter +and then storing its type on the parser stack. This approach requires the parser +to allocate enough memory upfront and implement serialization/deserialization, +which ideally would be avoided. To avoid this, we use a different approach! +Instead of having a single `quoted_content` token, we have specific tokens for +each quoted content type, such as `_quoted_content_i_single`, `_quoted_content_i_double`. +Once the start delimiter is tokenized, we know which quoted content should be +tokenized next, and from the token we can infer the end delimiter and whether +it supports interpolation. In other words, we extract the information from the +parsing state, rather than maintaining custom parser state. + +### Ref 2. External scanner for newlines + +Generally newlines may appear in the middle of expressions and we ignore them +as long as the expression is valid, that's why we list newline under extras. + +When a newline follows a complete expression, most of the time it should be +treated as terminator. However, there are specific cases where the newline is +non-breaking and treated as if it was just a space. This cases are: + + * call followed by newline and a `do end` block + * expression followed by newline and a binary operator + +In both cases we want to tokenize the newline as non-breaking, so we use external +scanner for lookahead. + +Note that the relevant rules already specify left/right associativity, so if we +simply added `optional("\n")` the conflicts would be resolved immediately rather +without using GLR. + +Additionally, since comments may appear anywhere and don't change the context, +we also tokenize newlines before comments as non-breaking. + +### Ref 3. External scanner for unary + and - + +Plus and minus are either binary or unary operators, depending on the context. +Consider the following variants + +``` +a + b +a+b +a+ b +a +b +``` + +In the first three expressions `+` is a binary operator, while in the last one +`+` is an unary operator referring to local call argument. + +To correctly tokenize all the cases, we have a special `_before_unary_operator` empty +token and use external scanner to tokenize + +To correctly tokenize all cases we use external scanner to tokenize a special empty +token (`_before_unary_operator`) when the spacing matches `a +b`, which forces the +parser to pick the unary operator path. + +### Ref 4. External scanner for `not in` + +The `not in` operator may have an arbitrary inline whitespace between `not` and `in`. + +We cannot use a regular expressoin like `/not[ \t]+in/`, because it would also match +in expressions like `a not inn` as the longest matching token. + +A possible solution could be `seq("not", "in")` with dynamic conflict resolution, but +then we tokenize two separate tokens. Also to properly handle `a not inn`, we would need +keyword extraction, which causes problems in our case (https://github.com/tree-sitter/tree-sitter/issues/1404). + +In the end it's easiest to use external scanner, so that we can skip inline whitespace +and ensure token ends after `in`. + +### Ref 5. External scanner for quoted atom start + +For parsing quoted atom `:` we could make the `"` (or `'`) token immediate, however this +would require adding immediate rules for single/double quoted content and listing them +in relevant places. We could definitely do that, but using external scanner is actually +simpler. + +### Ref 6. Identifier pattern + +See [Elixir / Unicode Syntax](https://hexdocs.pm/elixir/unicode-syntax.html) for official +notes. + +Tree-sitter already supports unicode properties in regular expressions, however character +class subtraction is not supported. + +For the base `` and `` we can use `[\p{ID_Start}]` and `[\p{ID_Continue}]` +respectively, since both are supported and according to the +[Unicode Annex #31](https://unicode.org/reports/tr31/#Table_Lexical_Classes_for_Identifiers) +they match the ranges listed in the Elixir docs. + +For atoms this translates to a clean regular expression. + +For variables however, we want to exclude uppercase (`\p{Lu}`) and titlecase (`\p{Lt}`) +categories from `\p{ID_Start}`. As already mentioned, we cannot use group subtraction +in the regular expression, so instead we need to create a suitable group of characters +on our own. + +After removing the uppercase/titlecase categories from `[\p{ID_Start}]`, we obtain the +following group: + +`[\p{Ll}\p{Lm}\p{Lo}\p{Nl}\p{Other_ID_Start}-\p{Pattern_Syntax}-\p{Pattern_White_Space}]` + +At the time of writing the subtracted groups actually only remove a single character: + +```elixir +Mix.install([{:unicode_set, "~> 1.1"}]) + +Unicode.Set.to_utf8_char( + "[[[:Ll:][:Lm:][:Lo:][:Nl:][:Other_ID_Start:]] & [[:Pattern_Syntax:][:Pattern_White_Space:]]]" +) +#=> {:ok, [11823]} +``` + +Consequently, by removing the subtraction we allow just one additional (not common) character, +which is perfectly acceptable. + +It's important to note that JavaScript regular expressions don't support the `\p{Other_ID_Start}` +unicode category. Fortunately this category is a small set of characters introduces for +[backward compatibility](https://unicode.org/reports/tr31/#Backward_Compatibility), so we can +enumerate it manually: + +```elixir +Mix.install([{:unicode_set, "~> 1.1"}]) + +Unicode.Set.to_utf8_char("[[[:Other_ID_Start:]] - [[:Pattern_Syntax:][:Pattern_White_Space:]]]") +|> elem(1) +|> Enum.flat_map(fn + n when is_number(n) -> [n] + range -> range +end) +|> Enum.map(&Integer.to_string(&1, 16)) +#=> ["1885", "1886", "2118", "212E", "309B", "309C"] +``` + +Finally, we obtain this regular expression group for variable ``: + +`[\p{Ll}\p{Lm}\p{Lo}\p{Nl}\u1885\u1886\u2118\u212E\u309B\u309C]` + +### Ref 7. Keyword token + +We tokenize the whole keyword sequence like `do: ` as a single token. +Ideally we wouldn't include the whitespace, but since we use `token` +it gets include. However, this is an intentionally accepted tradeoff, +because using `token` significantly simplifies the grammar and avoids +conflicts. + +The alternative approach would be to define keyword as `seq(alias(choice(...), $._keyword_literal), $._keyword_end)`, +where we list all other tokens that make for for valid keyword literal +and use custom scanner for `_keyword_end` to look ahead without tokenizing +the whitespace. However, this approach generates a number of conflicts +because `:` is tokenized separately and phrases like `fun fun • do` or +`fun • {}` are ambiguous (interpretation depends on whether `:` comes next). +Resolving some of these conflicts (for instance special keywords like `{}` or `%{}`) +requires the use of external scanner. Given the complexities this approach +brings to the grammar, and consequently the parser, we stick to the simpler +approach. diff --git a/grammar.js b/grammar.js index 06312d4..7f0afa6 100644 --- a/grammar.js +++ b/grammar.js @@ -1,7 +1,5 @@ -// 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 = { + // See https://github.com/elixir-lang/elixir/blob/master/lib/elixir/src/elixir_parser.yrl IN_MATCH_OPS: 10, WHEN_OP: 20, TYPE_OP: 30, @@ -64,6 +62,9 @@ const ATOM_OPERATOR_LITERALS = ALL_OPS.filter( // so it should be kept in sync const ATOM_SPECIAL_LITERALS = ["...", "%{}", "{}", "%", "<<>>", "..//"]; +// See Ref 6. in the docs +const ATOM_WORD_LITERAL = /[\p{ID_Start}_][\p{ID_Continue}@]*[?!]?/u; + // Word tokens used directly in the grammar const RESERVED_WORD_TOKENS = [ // Operators @@ -82,31 +83,28 @@ const SPECIAL_IDENTIFIERS = [ "__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 NUMBER_DEC = sep1(DIGITS, "_"); +const NUMBER_BIN = seq("0b", sep1(BIN_DIGITS, "_")); +const NUMBER_OCT = seq("0o", sep1(OCT_DIGITS, "_")); +const NUMBER_HEX = seq("0x", sep1(HEX_DIGITS, "_")); -const integer = choice(numberDec, numberBin, numberOct, numberHex); +const INTEGER = choice(NUMBER_DEC, NUMBER_BIN, NUMBER_OCT, NUMBER_HEX); -const floatScientificPart = seq(/[eE]/, optional(choice("-", "+")), integer); -const float = seq(numberDec, ".", numberDec, optional(floatScientificPart)); +const FLOAT_SCIENTIFIC_PART = seq(/[eE]/, optional(choice("-", "+")), INTEGER); +const FLOAT = seq(NUMBER_DEC, ".", NUMBER_DEC, optional(FLOAT_SCIENTIFIC_PART)); -const aliasPart = /[A-Z][_a-zA-Z0-9]*/; +const NEWLINE = /\r?\n/; 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: ($) => [ + // See Ref 1. in the docs $._quoted_content_i_single, $._quoted_content_i_double, $._quoted_content_i_heredoc_single, @@ -117,7 +115,6 @@ module.exports = grammar({ $._quoted_content_i_angle, $._quoted_content_i_bar, $._quoted_content_i_slash, - $._quoted_content_single, $._quoted_content_double, $._quoted_content_heredoc_single, @@ -129,77 +126,62 @@ module.exports = grammar({ $._quoted_content_bar, $._quoted_content_slash, - $._keyword_special_literal, - $._atom_start, - $._keyword_end, - + // See Ref 2. in the docs $._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_binary_operator, $._newline_before_comment, - // TODO explain this, basically we use this to force unary + and - - // if there is no spacing before the operand + // See Ref 3. in the docs $._before_unary_op, + // See Ref 4. in the docs $._not_in, + + // See Ref 5. in the docs + $._quoted_atom_start, ], - // 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: ($) => [ + NEWLINE, + /[ \t]|\r?\n|\\\r?\n/, $.comment, - /\s|\\\n/, - $._newline_before_binary_op, $._newline_before_comment, - "\n", + // Placing this directly in the binary operator rule leads + // to conflicts, but we can place it here without any drawbacks. + // If we detect binary operator and the previous line is not a + // valid expression, it's a syntax error either way + $._newline_before_binary_operator, ], - // 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, - ], + // Given `left • *`, `left` identifier can be either: + // * expression in `left * right` + // * call identifier in `left * / 2` + [$._expression, $._local_call_without_parentheses], - [$._remote_call, $._parenthesised_remote_call], + // Given `left • when`, `left` expression can be either: + // * binary operator operand in `left when right` + // * stab arguments item in `left when right ->` + // + // Given `arg1, left • when`, `left` expression can be either: + // * binary operator operand in `arg1, left when right, arg3` + // * stab arguments item in `arg1, left when right ->` + [$.binary_operator, $._stab_clause_arguments_without_parentheses], - // 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], + // Given `(-> • /`, stab can be either: + // * stab clause operator in `(-> / / 2)` + // * operator identifier in `(-> / 2)` [$.operator_identifier, $.stab_clause], + + // Given `& /`, ampersand can be either: + // * capture operator in `& / / 2` + // * operator identifier in `& / 1` [$.unary_operator, $.operator_identifier], - // [$.alias], + + // Given `(arg -> expression • \n`, the newline could be either: + // * terminator separating expressions in `(arg -> expression \n expression)` + // * terminator separating clauses in `(arg -> expression \n arg -> expression)` [$.body], - // [$.block, $._stab_clause_arguments], - // [$.block, $._stab_clause_parentheses_arguments], - // [$.block, $._stab_clause_parentheses_arguments], - [$.after_block], - [$.rescue_block], - [$.catch_block], - [$.else_block], ], rules: { @@ -212,7 +194,8 @@ module.exports = grammar({ ), _terminator: ($) => - prec.right(choice(seq(repeat("\n"), ";"), repeat1("\n"))), + // Right precedence, because we want to consume `;` after newlines if present + prec.right(choice(seq(repeat(NEWLINE), ";"), repeat1(NEWLINE))), _expression: ($) => choice( @@ -221,7 +204,10 @@ module.exports = grammar({ $.alias, $.integer, $.float, - $.atom, + $.char, + $.boolean, + $.nil, + $._atom, $.string, $.charlist, $.sigil, @@ -229,9 +215,6 @@ module.exports = grammar({ $.tuple, $.bitstring, $.map, - $.char, - $.boolean, - $.nil, $.unary_operator, $.binary_operator, $.dot, @@ -241,54 +224,27 @@ module.exports = grammar({ ), block: ($) => - prec( - PREC.WHEN_OP, - seq( - "(", - seq( - optional($._terminator), - optional( - seq( - sep1(choice($._expression, $.stab_clause), $._terminator), - optional($._terminator) - ) + seq( + "(", + optional($._terminator), + optional( + choice( + sep1(choice($.stab_clause), $._terminator), + seq( + sep1(choice($._expression), $._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( + // See Ref 6. in the docs /[\p{Ll}\p{Lm}\p{Lo}\p{Nl}\u1885\u1886\u2118\u212E\u309B\u309C][\p{ID_Continue}]*[?!]?/u, "..." ), @@ -297,36 +253,34 @@ module.exports = grammar({ 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: ($) => token(sep1(/[A-Z][_a-zA-Z0-9]*/, /\s*\.\s*/)), - _alias_single: ($) => aliasPart, + integer: ($) => token(INTEGER), - _alias_multi: ($) => token(sep1(aliasPart, /\s*\.\s*/)), + float: ($) => token(FLOAT), - integer: ($) => token(integer), + char: ($) => /\?(.|\\.)/, - float: ($) => token(float), + boolean: ($) => choice("true", "false"), + + nil: ($) => "nil", + + _atom: ($) => choice($.atom, $.quoted_atom), 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 + token( + seq( + ":", + choice( + ATOM_WORD_LITERAL, + ...ATOM_OPERATOR_LITERALS, + ...ATOM_SPECIAL_LITERALS + ) ) ), - // 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), + quoted_atom: ($) => + seq($._quoted_atom_start, choice($._quoted_i_double, $._quoted_i_single)), // Defines $._quoted_content_i_{name} and $._quoted_content_{name} rules, // content with and without interpolation respectively @@ -402,6 +356,82 @@ module.exports = grammar({ optional(alias(token.immediate(/[a-zA-Z]+/), $.sigil_modifiers)) ), + keywords: ($) => + // Right precedence, because we want to consume next items as long + // as there is a comma ahead + prec.right(sep1($.pair, ",")), + + _keywords_with_trailing_separator: ($) => + seq(sep1($.pair, ","), optional(",")), + + pair: ($) => seq($._keyword, $._expression), + + _keyword: ($) => choice($.keyword, $.quoted_keyword), + + keyword: ($) => + // See Ref 7. in the docs + token( + seq( + choice( + ATOM_WORD_LITERAL, + ...ATOM_OPERATOR_LITERALS.filter((op) => op !== "::"), + ...ATOM_SPECIAL_LITERALS + ), + /:\s/ + ) + ), + + quoted_keyword: ($) => + seq( + choice($._quoted_i_double, $._quoted_i_single), + token.immediate(/:\s/) + ), + + list: ($) => seq("[", optional($._items_with_trailing_separator), "]"), + + tuple: ($) => seq("{", optional($._items_with_trailing_separator), "}"), + + bitstring: ($) => + seq("<<", optional($._items_with_trailing_separator), ">>"), + + map: ($) => + // Precedence over tuple + prec( + 1, + seq( + "%", + optional($.struct), + "{", + optional(alias($._items_with_trailing_separator, $.map_content)), + "}" + ) + ), + + struct: ($) => + // Left precedence, because if there is a conflict involving `{}`, + // we want to treat it as map continuation rather than tuple + prec.left( + choice( + $.alias, + $._atom, + $._identifier, + $.unary_operator, + $.dot, + alias($._call_with_parentheses, $.call) + ) + ), + + _items_with_trailing_separator: ($) => + seq( + choice( + seq(sep1($._expression, ","), optional(",")), + seq( + optional(seq(sep1($._expression, ","), ",")), + alias($._keywords_with_trailing_separator, $.keywords) + ) + ) + ), + unary_operator: ($) => choice( unaryOp($, prec, PREC.CAPTURE_OP, "&", $._capture_expression), @@ -413,9 +443,10 @@ module.exports = grammar({ _capture_expression: ($) => choice( - // TODO sholud parenthesised expression be generally used (?) - // Precedence over block expression - prec(PREC.WHEN_OP + 1, seq("(", $._expression, ")")), + // Note that block expression is not allowed as capture operand, + // so we have an explicit sequence with the parentheses and higher + // precedence + prec(1, seq("(", $._expression, ")")), $._expression ), @@ -466,13 +497,14 @@ module.exports = grammar({ 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`) + // + // * exclude "=>" since it's not a valid operator identifier + // * exclude // since it's only valid after .. + // * exclude binary "-" and "+" as they are handled as unary below + // + // For unary operator identifiers we use the same precedence as + // operators, so that we get conflicts and resolve them dynamically + // (see grammar.conflicts for more details) choice( // Unary operators prec(PREC.CAPTURE_OP, "&"), @@ -505,188 +537,63 @@ module.exports = grammar({ seq(choice($._expression), ".", choice($.alias, $.tuple)) ), - keywords: ($) => sep1($.pair, ","), + call: ($) => choice($._call_without_parentheses, $._call_with_parentheses), - 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: ($) => + _call_without_parentheses: ($) => choice( - $._local_call_with_arguments, - $._parenthesised_local_call_with_arguments, - $._local_call_without_arguments, - $._remote_call, - $._parenthesised_remote_call, - $._anonymous_call, - $._call_on_call + $._local_call_without_parentheses, + $._local_call_just_do_block, + $._remote_call_without_parentheses ), - _parenthesised_call: ($) => + _call_with_parentheses: ($) => choice( - $._parenthesised_local_call_with_arguments, - $._parenthesised_remote_call, + $._local_call_with_parentheses, + $._remote_call_with_parentheses, $._anonymous_call, - $._call_on_call + $._double_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)) - ) - ), + // Note, calls have left precedence, so that `do end` block sticks to + // the outermost call - _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, + _local_call_without_parentheses: ($) => 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 + alias($._call_arguments_without_parentheses, $.arguments), 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, + _local_call_with_parentheses: ($) => 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 + alias($._call_arguments_with_parentheses_immediate, $.arguments), 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 + _local_call_just_do_block: ($) => + // Lower precedence than identifier, because `foo bar do` is `foo(bar) do end` + prec(-1, seq($._identifier, $.do_block)), - // 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: ($) => + _remote_call_without_parentheses: ($) => prec.left( seq( alias($._remote_dot, $.dot), - optional(alias($._call_arguments, $.arguments)), + optional(alias($._call_arguments_without_parentheses, $.arguments)), optional(seq(optional($._newline_before_do), $.do_block)) - // optional($.do_block) ) ), - _parenthesised_remote_call: ($) => + _remote_call_with_parentheses: ($) => prec.left( seq( alias($._remote_dot, $.dot), - alias($._parenthesised_call_arguments, $.arguments), + alias($._call_arguments_with_parentheses_immediate, $.arguments), optional(seq(optional($._newline_before_do), $.do_block)) - // optional($.do_block) ) ), @@ -696,9 +603,6 @@ module.exports = grammar({ 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), @@ -709,117 +613,154 @@ module.exports = grammar({ ) ), - _parenthesised_call_arguments: ($) => - seq(token.immediate("("), optional($._call_arguments), ")"), - _anonymous_call: ($) => seq( alias($._anonymous_dot, $.dot), - alias($._anonymous_arguments, $.arguments) + alias($._call_arguments_with_parentheses, $.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( + _double_call: ($) => + prec.left( seq( - choice( - seq( - sep1($._expression, ","), - optional(seq(",", $.keywords, optional(","))) + alias( + choice( + $._local_call_with_parentheses, + $._remote_call_with_parentheses, + $._anonymous_call ), - seq($.keywords, optional(",")) - ) + $.call + ), + alias($._call_arguments_with_parentheses, $.arguments), + optional(seq(optional($._newline_before_do), $.do_block)) ) ), + _call_arguments_with_parentheses: ($) => + seq("(", optional($._call_arguments_with_trailing_separator), ")"), + + _call_arguments_with_parentheses_immediate: ($) => + seq( + token.immediate("("), + optional($._call_arguments_with_trailing_separator), + ")" + ), + + _call_arguments_with_trailing_separator: ($) => + choice( + seq( + sep1($._expression, ","), + optional( + seq(",", alias($._keywords_with_trailing_separator, $.keywords)) + ) + ), + alias($._keywords_with_trailing_separator, $.keywords) + ), + + _call_arguments_without_parentheses: ($) => + // Right precedence, because `fun1 fun2 x, y` is `fun1(fun2(x, y))` + prec.right( + choice( + seq(sep1($._expression, ","), optional(seq(",", $.keywords))), + $.keywords + ) + ), + + do_block: ($) => + seq( + callKeywordBlock($, "do"), + repeat( + choice($.after_block, $.rescue_block, $.catch_block, $.else_block) + ), + "end" + ), + + after_block: ($) => callKeywordBlock($, "after"), + rescue_block: ($) => callKeywordBlock($, "rescue"), + catch_block: ($) => callKeywordBlock($, "catch"), + else_block: ($) => callKeywordBlock($, "else"), + 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: ($) => + // Right precedence, because we want to consume body if any 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_arguments_with_parentheses, $.arguments), alias( - $._stab_clause_parentheses_arguments_with_guard, + $._stab_clause_arguments_with_parentheses_with_guard, $.binary_operator ), - alias($._stab_clause_arguments, $.arguments), - alias($._stab_clause_arguments_with_guard, $.binary_operator) + alias($._stab_clause_arguments_without_parentheses, $.arguments), + alias( + $._stab_clause_arguments_without_parentheses_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 + _stab_clause_arguments_with_parentheses: ($) => + // Precedence over block expression + prec( + 1, + seq( + "(", + optional( + choice( + seq(sep1($._expression, ","), optional(seq(",", $.keywords))), + $.keywords + ) + ), + ")" + ) + ), + + _stab_clause_arguments_without_parentheses: ($) => + // We give the arguments and expression the same precedence as "when" + // binary operator, so that we get conflicts and resolve them dynamically + // (see the grammar.conflicts for more details) prec( PREC.WHEN_OP, - prec.dynamic(1, seq("(", optional($._stab_clause_arguments), ")")) + choice( + seq( + sep1(prec(PREC.WHEN_OP, $._expression), ","), + optional(seq(",", $.keywords)) + ), + $.keywords + ) ), - _stab_clause_parentheses_arguments_with_guard: ($) => + + _stab_clause_arguments_with_parentheses_with_guard: ($) => seq( - alias($._stab_clause_parentheses_arguments, $.arguments), + alias($._stab_clause_arguments_with_parentheses, $.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 + _stab_clause_arguments_without_parentheses_with_guard: ($) => + // Given `a when b ->`, the left stab operand can be interpreted either + // as a single argument item, or as binary operator with arguments on + // the left and guard expression on the right. Using dynamic precedence + // we favour the latter interpretation during dynamic conflict resolution 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 + alias($._stab_clause_arguments_without_parentheses, $.arguments), + "when", + $._expression + ) ), - _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), + sep1($._expression, $._terminator), optional($._terminator) ), @@ -832,7 +773,7 @@ module.exports = grammar({ ), // A comment may be anywhere, we give it a lower precedence, - // so it doesn't intercept sequences such as interpolation + // so it doesn't intercept interpolation comment: ($) => token(prec(-1, seq("#", /.*/))), }, }); @@ -846,15 +787,14 @@ function sep(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, + // Expression such as `x + y` falls under the "expression vs local call" + // conflict that we already have. By using dynamic precedence we penalize + // unary operator, so `x + y` is interpreted as binary operator (unless + // _before_unary_op is tokenized and forces unary operator interpretation) + return prec.dynamic( + -1, + assoc( + precedence, seq( optional($._before_unary_op), field("operator", operator), @@ -875,7 +815,7 @@ function binaryOp($, assoc, precedence, operator, left = null, right = null) { ); } -function sugarBlock($, start) { +function callKeywordBlock($, start) { return seq( start, optional($._terminator), @@ -895,8 +835,7 @@ function defineQuoted(start, end, name) { start, repeat( choice( - // TODO rename the extenrals to _content - alias($[`_quoted_content_i_${name}`], $.string_content), + alias($[`_quoted_content_i_${name}`], $.quoted_content), $.interpolation, $.escape_sequence ) @@ -909,9 +848,8 @@ function defineQuoted(start, end, name) { start, repeat( choice( - // TODO rename the extenrals to _content - alias($[`_quoted_content_${name}`], $.string_content), - // It's always possible to escape the end delimiter + alias($[`_quoted_content_${name}`], $.quoted_content), + // The end delimiter may always be escaped $.escape_sequence ) ), diff --git a/package-lock.json b/package-lock.json index 674d918..cc7ebad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "tree-sitter-elixir", - "version": "1.0.0", + "version": "0.19.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "1.0.0", + "version": "0.19.0", "license": "ISC", "dependencies": { "nan": "^2.15.0" diff --git a/scripts/parse_repo.sh b/scripts/parse_repo.sh new file mode 100755 index 0000000..6208b58 --- /dev/null +++ b/scripts/parse_repo.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +set -e + +cd "$(dirname "$0")/.." + +print_usage_and_exit() { + echo "Usage: $0 " + echo "" + echo "Clones the given repository and runs the parser against all Elixir files" + echo "" + echo "## Examples" + echo "" + echo " $0 elixir-lang/elixir" + echo "" + exit 1 +} + +if [ $# -ne 1 ]; then + print_usage_and_exit +fi + +gh_repo="$1" + +dir="tmp/gh/${gh_repo//[\/-]/_}" + +if [[ ! -d "$dir" ]]; then + mkdir -p "$(dirname "$dir")" + git clone "https://github.com/$gh_repo.git" "$dir" +fi + +echo "Running parser against $gh_repo" + +npx tree-sitter parse --quiet --stat "$dir/**/*.ex*" diff --git a/src/grammar.json b/src/grammar.json index fcd520e..ff9ccdf 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -80,8 +80,8 @@ { "type": "REPEAT", "content": { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\r?\\n" } }, { @@ -93,8 +93,8 @@ { "type": "REPEAT1", "content": { - "type": "STRING", - "value": "\n" + "type": "PATTERN", + "value": "\\r?\\n" } } ] @@ -125,7 +125,19 @@ }, { "type": "SYMBOL", - "name": "atom" + "name": "char" + }, + { + "type": "SYMBOL", + "name": "boolean" + }, + { + "type": "SYMBOL", + "name": "nil" + }, + { + "type": "SYMBOL", + "name": "_atom" }, { "type": "SYMBOL", @@ -155,18 +167,6 @@ "type": "SYMBOL", "name": "map" }, - { - "type": "SYMBOL", - "name": "char" - }, - { - "type": "SYMBOL", - "name": "boolean" - }, - { - "type": "SYMBOL", - "name": "nil" - }, { "type": "SYMBOL", "name": "unary_operator" @@ -194,106 +194,129 @@ ] }, "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": "STRING", + "value": "(" + }, + { + "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": "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": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "stab_clause" + } + ] } ] } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } + } + ] + }, + { + "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": "STRING", + "value": ")" + } + ] }, "_identifier": { "type": "CHOICE", @@ -355,23 +378,6 @@ ] }, "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", @@ -766,43 +772,291 @@ ] } }, + "char": { + "type": "PATTERN", + "value": "\\?(.|\\\\.)" + }, + "boolean": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "false" + } + ] + }, + "nil": { + "type": "STRING", + "value": "nil" + }, + "_atom": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "atom" + }, + { + "type": "SYMBOL", + "name": "quoted_atom" + } + ] + }, "atom": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[\\p{ID_Start}_][\\p{ID_Continue}@]*[?!]?" + }, + { + "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": "~~~" + }, + { + "type": "STRING", + "value": "..." + }, + { + "type": "STRING", + "value": "%{}" + }, + { + "type": "STRING", + "value": "{}" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "<<>>" + }, + { + "type": "STRING", + "value": "..//" + } + ] + } + ] + } + }, + "quoted_atom": { "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "_atom_start" + "name": "_quoted_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" @@ -815,240 +1069,6 @@ } ] }, - "_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": [ @@ -1068,7 +1088,7 @@ "name": "_quoted_content_i_double" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1106,7 +1126,7 @@ "name": "_quoted_content_double" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1140,7 +1160,7 @@ "name": "_quoted_content_i_single" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1178,7 +1198,7 @@ "name": "_quoted_content_single" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1212,7 +1232,7 @@ "name": "_quoted_content_i_heredoc_single" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1250,7 +1270,7 @@ "name": "_quoted_content_heredoc_single" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1284,7 +1304,7 @@ "name": "_quoted_content_i_heredoc_double" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1322,7 +1342,7 @@ "name": "_quoted_content_heredoc_double" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1356,7 +1376,7 @@ "name": "_quoted_content_i_parenthesis" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1394,7 +1414,7 @@ "name": "_quoted_content_parenthesis" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1428,7 +1448,7 @@ "name": "_quoted_content_i_curly" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1466,7 +1486,7 @@ "name": "_quoted_content_curly" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1500,7 +1520,7 @@ "name": "_quoted_content_i_square" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1538,7 +1558,7 @@ "name": "_quoted_content_square" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1572,7 +1592,7 @@ "name": "_quoted_content_i_angle" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1610,7 +1630,7 @@ "name": "_quoted_content_angle" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1644,7 +1664,7 @@ "name": "_quoted_content_i_bar" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1682,7 +1702,7 @@ "name": "_quoted_content_bar" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1716,7 +1736,7 @@ "name": "_quoted_content_i_slash" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -1754,7 +1774,7 @@ "name": "_quoted_content_slash" }, "named": true, - "value": "string_content" + "value": "quoted_content" }, { "type": "SYMBOL", @@ -2007,15 +2027,645 @@ } ] }, + "keywords": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "pair" + } + ] + } + } + ] + } + }, + "_keywords_with_trailing_separator": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "pair" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "pair": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_keyword" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + }, + "_keyword": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "keyword" + }, + { + "type": "SYMBOL", + "name": "quoted_keyword" + } + ] + }, + "keyword": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[\\p{ID_Start}_][\\p{ID_Continue}@]*[?!]?" + }, + { + "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": "..." + }, + { + "type": "STRING", + "value": "%{}" + }, + { + "type": "STRING", + "value": "{}" + }, + { + "type": "STRING", + "value": "%" + }, + { + "type": "STRING", + "value": "<<>>" + }, + { + "type": "STRING", + "value": "..//" + } + ] + }, + { + "type": "PATTERN", + "value": ":\\s" + } + ] + } + }, + "quoted_keyword": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_quoted_i_double" + }, + { + "type": "SYMBOL", + "name": "_quoted_i_single" + } + ] + }, + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PATTERN", + "value": ":\\s" + } + } + ] + }, + "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": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "%" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "struct" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_items_with_trailing_separator" + }, + "named": true, + "value": "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": "_call_with_parentheses" + }, + "named": true, + "value": "call" + } + ] + } + }, + "_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": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "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": "STRING", + "value": "," + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_keywords_with_trailing_separator" + }, + "named": true, + "value": "keywords" + } + ] + } + ] + } + ] + }, "unary_operator": { "type": "CHOICE", "members": [ { - "type": "PREC", - "value": 60, + "type": "PREC_DYNAMIC", + "value": -1, "content": { - "type": "PREC_DYNAMIC", - "value": -1, + "type": "PREC", + "value": 60, "content": { "type": "SEQ", "members": [ @@ -2048,11 +2698,11 @@ } }, { - "type": "PREC", - "value": 200, + "type": "PREC_DYNAMIC", + "value": -1, "content": { - "type": "PREC_DYNAMIC", - "value": -1, + "type": "PREC", + "value": 200, "content": { "type": "SEQ", "members": [ @@ -2110,11 +2760,11 @@ } }, { - "type": "PREC", - "value": 220, + "type": "PREC_DYNAMIC", + "value": -1, "content": { - "type": "PREC_DYNAMIC", - "value": -1, + "type": "PREC", + "value": 220, "content": { "type": "SEQ", "members": [ @@ -2147,11 +2797,11 @@ } }, { - "type": "PREC", - "value": 235, + "type": "PREC_DYNAMIC", + "value": -1, "content": { - "type": "PREC_DYNAMIC", - "value": -1, + "type": "PREC", + "value": 235, "content": { "type": "SEQ", "members": [ @@ -2190,7 +2840,7 @@ "members": [ { "type": "PREC", - "value": 21, + "value": 1, "content": { "type": "SEQ", "members": [ @@ -3292,498 +3942,46 @@ ] } }, - "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": "nil" - }, "call": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_local_call_with_arguments" + "name": "_call_without_parentheses" }, { "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" + "name": "_call_with_parentheses" } ] }, - "_parenthesised_call": { + "_call_without_parentheses": { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "_parenthesised_local_call_with_arguments" + "name": "_local_call_without_parentheses" }, { "type": "SYMBOL", - "name": "_parenthesised_remote_call" + "name": "_local_call_just_do_block" + }, + { + "type": "SYMBOL", + "name": "_remote_call_without_parentheses" + } + ] + }, + "_call_with_parentheses": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_local_call_with_parentheses" + }, + { + "type": "SYMBOL", + "name": "_remote_call_with_parentheses" }, { "type": "SYMBOL", @@ -3791,80 +3989,11 @@ }, { "type": "SYMBOL", - "name": "_call_on_call" + "name": "_double_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": { + "_local_call_without_parentheses": { "type": "PREC_LEFT", "value": 0, "content": { @@ -3878,7 +4007,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_call_arguments" + "name": "_call_arguments_without_parentheses" }, "named": true, "value": "arguments" @@ -3915,7 +4044,7 @@ ] } }, - "_parenthesised_local_call_with_arguments": { + "_local_call_with_parentheses": { "type": "PREC_LEFT", "value": 0, "content": { @@ -3929,7 +4058,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_parenthesised_call_arguments" + "name": "_call_arguments_with_parentheses_immediate" }, "named": true, "value": "arguments" @@ -3966,8 +4095,8 @@ ] } }, - "_local_call_without_arguments": { - "type": "PREC_DYNAMIC", + "_local_call_just_do_block": { + "type": "PREC", "value": -1, "content": { "type": "SEQ", @@ -3983,7 +4112,7 @@ ] } }, - "_remote_call": { + "_remote_call_without_parentheses": { "type": "PREC_LEFT", "value": 0, "content": { @@ -4005,7 +4134,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_call_arguments" + "name": "_call_arguments_without_parentheses" }, "named": true, "value": "arguments" @@ -4047,7 +4176,7 @@ ] } }, - "_parenthesised_remote_call": { + "_remote_call_with_parentheses": { "type": "PREC_LEFT", "value": 0, "content": { @@ -4066,7 +4195,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_parenthesised_call_arguments" + "name": "_call_arguments_with_parentheses_immediate" }, "named": true, "value": "arguments" @@ -4221,34 +4350,6 @@ ] } }, - "_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": [ @@ -4265,7 +4366,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_anonymous_arguments" + "name": "_call_arguments_with_parentheses" }, "named": true, "value": "arguments" @@ -4289,7 +4390,76 @@ ] } }, - "_anonymous_arguments": { + "_double_call": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_local_call_with_parentheses" + }, + { + "type": "SYMBOL", + "name": "_remote_call_with_parentheses" + }, + { + "type": "SYMBOL", + "name": "_anonymous_call" + } + ] + }, + "named": true, + "value": "call" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_call_arguments_with_parentheses" + }, + "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" + } + ] + } + ] + } + }, + "_call_arguments_with_parentheses": { "type": "SEQ", "members": [ { @@ -4301,7 +4471,7 @@ "members": [ { "type": "SYMBOL", - "name": "_call_arguments" + "name": "_call_arguments_with_trailing_separator" }, { "type": "BLANK" @@ -4314,128 +4484,164 @@ } ] }, - "_call_arguments": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { + "_call_arguments_with_parentheses_immediate": { + "type": "SEQ", + "members": [ + { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "(" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_call_arguments_with_trailing_separator" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_call_arguments_with_trailing_separator": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "REPEAT", + "content": { "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" + "type": "SYMBOL", + "name": "_expression" } ] } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_keywords_with_trailing_separator" + }, + "named": true, + "value": "keywords" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_keywords_with_trailing_separator" + }, + "named": true, + "value": "keywords" + } + ] + }, + "_call_arguments_without_parentheses": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "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" + } ] } ] - } - ] - } - }, - "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": "]" + "name": "keywords" } ] } @@ -5078,6 +5284,34 @@ } ] }, + "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": "]" + } + ] + } + }, "stab_clause": { "type": "PREC_RIGHT", "value": 0, @@ -5122,7 +5356,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_stab_clause_parentheses_arguments" + "name": "_stab_clause_arguments_with_parentheses" }, "named": true, "value": "arguments" @@ -5131,7 +5365,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_stab_clause_parentheses_arguments_with_guard" + "name": "_stab_clause_arguments_with_parentheses_with_guard" }, "named": true, "value": "binary_operator" @@ -5140,7 +5374,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_stab_clause_arguments" + "name": "_stab_clause_arguments_without_parentheses" }, "named": true, "value": "arguments" @@ -5149,54 +5383,178 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_stab_clause_arguments_with_guard" + "name": "_stab_clause_arguments_without_parentheses_with_guard" }, "named": true, "value": "binary_operator" } ] }, - "_stab_clause_parentheses_arguments": { + "_stab_clause_arguments_with_parentheses": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "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": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "_stab_clause_arguments_without_parentheses": { "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": ")" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PREC", + "value": 20, + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "PREC", + "value": 20, + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "keywords" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "keywords" + } + ] } }, - "_stab_clause_parentheses_arguments_with_guard": { + "_stab_clause_arguments_with_parentheses_with_guard": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_stab_clause_parentheses_arguments" + "name": "_stab_clause_arguments_with_parentheses" }, "named": true, "value": "arguments" @@ -5211,7 +5569,7 @@ } ] }, - "_stab_clause_arguments_with_guard": { + "_stab_clause_arguments_without_parentheses_with_guard": { "type": "PREC_DYNAMIC", "value": 1, "content": { @@ -5221,7 +5579,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_stab_clause_arguments" + "name": "_stab_clause_arguments_without_parentheses" }, "named": true, "value": "arguments" @@ -5237,74 +5595,6 @@ ] } }, - "_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": [ @@ -5312,71 +5602,36 @@ "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": "SYMBOL", + "name": "_terminator" }, { - "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" } - } - ] + ] + } } ] }, @@ -5467,69 +5722,34 @@ }, "extras": [ { - "type": "SYMBOL", - "name": "comment" + "type": "PATTERN", + "value": "\\r?\\n" }, { "type": "PATTERN", - "value": "\\s|\\\\\\n" + "value": "[ \\t]|\\r?\\n|\\\\\\r?\\n" }, { "type": "SYMBOL", - "name": "_newline_before_binary_op" + "name": "comment" }, { "type": "SYMBOL", "name": "_newline_before_comment" }, { - "type": "STRING", - "value": "\n" + "type": "SYMBOL", + "name": "_newline_before_binary_operator" } ], "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" + "_local_call_without_parentheses" ], [ "binary_operator", - "_stab_clause_arguments_expression" - ], - [ - "tuple", - "map" - ], - [ - "tuple", - "map_content" + "_stab_clause_arguments_without_parentheses" ], [ "operator_identifier", @@ -5541,18 +5761,6 @@ ], [ "body" - ], - [ - "after_block" - ], - [ - "rescue_block" - ], - [ - "catch_block" - ], - [ - "else_block" ] ], "precedences": [], @@ -5637,25 +5845,13 @@ "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" + "name": "_newline_before_binary_operator" }, { "type": "SYMBOL", @@ -5668,6 +5864,10 @@ { "type": "SYMBOL", "name": "_not_in" + }, + { + "type": "SYMBOL", + "name": "_quoted_atom_start" } ], "inline": [], diff --git a/src/node-types.json b/src/node-types.json index 7ba69d5..9b6826a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -79,6 +79,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -186,6 +190,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -217,11 +225,6 @@ ] } }, - { - "type": "alias", - "named": true, - "fields": {} - }, { "type": "anonymous_function", "named": true, @@ -321,6 +324,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -348,38 +355,6 @@ ] } }, - { - "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, @@ -464,6 +439,10 @@ "type": "operator_identifier", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -756,6 +735,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -863,6 +846,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -974,6 +961,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -1081,6 +1072,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -1118,7 +1113,7 @@ "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "access_call", @@ -1192,6 +1187,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -1230,7 +1229,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "arguments", @@ -1343,6 +1342,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -1391,7 +1394,7 @@ "named": true }, { - "type": "string_content", + "type": "quoted_content", "named": true } ] @@ -1489,6 +1492,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "rescue_block", "named": true @@ -1608,6 +1615,10 @@ "type": "operator_identifier", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -1715,6 +1726,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -1831,6 +1846,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -1858,33 +1877,6 @@ ] } }, - { - "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, @@ -1984,6 +1976,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -2114,6 +2110,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -2235,6 +2235,14 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, + { + "type": "quoted_keyword", + "named": true + }, { "type": "sigil", "named": true @@ -2262,6 +2270,52 @@ ] } }, + { + "type": "quoted_atom", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", + "named": true + }, + { + "type": "quoted_content", + "named": true + } + ] + } + }, + { + "type": "quoted_keyword", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", + "named": true + }, + { + "type": "quoted_content", + "named": true + } + ] + } + }, { "type": "rescue_block", "named": true, @@ -2342,6 +2396,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -2389,6 +2447,10 @@ "type": "interpolation", "named": true }, + { + "type": "quoted_content", + "named": true + }, { "type": "sigil_modifiers", "named": true @@ -2396,10 +2458,6 @@ { "type": "sigil_name", "named": true - }, - { - "type": "string_content", - "named": true } ] } @@ -2484,6 +2542,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -2556,7 +2618,7 @@ "named": true }, { - "type": "string_content", + "type": "quoted_content", "named": true } ] @@ -2590,6 +2652,10 @@ "type": "identifier", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "special_identifier", "named": true @@ -2689,6 +2755,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -2835,6 +2905,10 @@ "type": "nil", "named": true }, + { + "type": "quoted_atom", + "named": true + }, { "type": "sigil", "named": true @@ -2862,10 +2936,6 @@ ] } }, - { - "type": "\n", - "named": false - }, { "type": "!", "named": false @@ -2894,10 +2964,6 @@ "type": "%", "named": false }, - { - "type": "%{}", - "named": false - }, { "type": "&", "named": false @@ -2978,10 +3044,6 @@ "type": "...", "named": false }, - { - "type": "..//", - "named": false - }, { "type": "/", "named": false @@ -3014,10 +3076,6 @@ "type": "<<<", "named": false }, - { - "type": "<<>>", - "named": false - }, { "type": "<<~", "named": false @@ -3130,10 +3188,18 @@ "type": "after", "named": false }, + { + "type": "alias", + "named": true + }, { "type": "and", "named": false }, + { + "type": "atom", + "named": true + }, { "type": "catch", "named": false @@ -3182,6 +3248,10 @@ "type": "integer", "named": true }, + { + "type": "keyword", + "named": true + }, { "type": "nil", "named": false @@ -3194,6 +3264,10 @@ "type": "or", "named": false }, + { + "type": "quoted_content", + "named": true + }, { "type": "rescue", "named": false @@ -3206,10 +3280,6 @@ "type": "sigil_name", "named": true }, - { - "type": "string_content", - "named": true - }, { "type": "true", "named": false @@ -3226,10 +3296,6 @@ "type": "{", "named": false }, - { - "type": "{}", - "named": false - }, { "type": "|", "named": false diff --git a/src/parser.c b/src/parser.c index d828a7d..343ed75 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,18 +14,18 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 5460 -#define LARGE_STATE_COUNT 1393 -#define SYMBOL_COUNT 247 -#define ALIAS_COUNT 0 -#define TOKEN_COUNT 136 -#define EXTERNAL_TOKEN_COUNT 28 +#define STATE_COUNT 4889 +#define LARGE_STATE_COUNT 1087 +#define SYMBOL_COUNT 241 +#define ALIAS_COUNT 1 +#define TOKEN_COUNT 131 +#define EXTERNAL_TOKEN_COUNT 26 #define FIELD_COUNT 3 #define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 11 +#define PRODUCTION_ID_COUNT 10 enum { - anon_sym_LF = 1, + aux_sym__terminator_token1 = 1, anon_sym_SEMI = 2, anon_sym_LPAREN = 3, anon_sym_RPAREN = 4, @@ -37,88 +37,88 @@ enum { 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, + sym_alias = 13, + sym_integer = 14, + sym_float = 15, + sym_char = 16, + anon_sym_true = 17, + anon_sym_false = 18, + anon_sym_nil = 19, + sym_atom = 20, + anon_sym_DQUOTE = 21, + anon_sym_SQUOTE = 22, + anon_sym_SQUOTE_SQUOTE_SQUOTE = 23, + anon_sym_DQUOTE_DQUOTE_DQUOTE = 24, + anon_sym_LBRACE = 25, + anon_sym_RBRACE = 26, + anon_sym_LBRACK = 27, + anon_sym_RBRACK = 28, + anon_sym_LT = 29, + anon_sym_GT = 30, + anon_sym_PIPE = 31, + anon_sym_SLASH = 32, + anon_sym_POUND_LBRACE = 33, + sym_escape_sequence = 34, + anon_sym_TILDE = 35, + aux_sym_sigil_token1 = 36, + aux_sym_sigil_token2 = 37, + aux_sym_sigil_token3 = 38, + anon_sym_COMMA = 39, + sym_keyword = 40, + aux_sym_quoted_keyword_token1 = 41, + anon_sym_LT_LT = 42, + anon_sym_GT_GT = 43, + anon_sym_PERCENT = 44, + anon_sym_AMP = 45, + anon_sym_PLUS = 46, + anon_sym_DASH = 47, + anon_sym_BANG = 48, + anon_sym_CARET = 49, + anon_sym_TILDE_TILDE_TILDE = 50, + anon_sym_not = 51, + anon_sym_AT = 52, + anon_sym_LT_DASH = 53, + anon_sym_BSLASH_BSLASH = 54, + anon_sym_when = 55, + anon_sym_COLON_COLON = 56, + anon_sym_EQ_GT = 57, + anon_sym_EQ = 58, + anon_sym_PIPE_PIPE = 59, + anon_sym_PIPE_PIPE_PIPE = 60, + anon_sym_or = 61, + anon_sym_AMP_AMP = 62, + anon_sym_AMP_AMP_AMP = 63, + anon_sym_and = 64, + anon_sym_EQ_EQ = 65, + anon_sym_BANG_EQ = 66, + anon_sym_EQ_TILDE = 67, + anon_sym_EQ_EQ_EQ = 68, + anon_sym_BANG_EQ_EQ = 69, + anon_sym_LT_EQ = 70, + anon_sym_GT_EQ = 71, + anon_sym_PIPE_GT = 72, + anon_sym_LT_LT_LT = 73, + anon_sym_GT_GT_GT = 74, + anon_sym_LT_LT_TILDE = 75, + anon_sym_TILDE_GT_GT = 76, + anon_sym_LT_TILDE = 77, + anon_sym_TILDE_GT = 78, + anon_sym_LT_TILDE_GT = 79, + anon_sym_LT_PIPE_GT = 80, + anon_sym_in = 81, + anon_sym_CARET_CARET_CARET = 82, + anon_sym_SLASH_SLASH = 83, + anon_sym_PLUS_PLUS = 84, + anon_sym_DASH_DASH = 85, + anon_sym_PLUS_PLUS_PLUS = 86, + anon_sym_DASH_DASH_DASH = 87, + anon_sym_DOT_DOT = 88, + anon_sym_LT_GT = 89, + anon_sym_STAR = 90, + anon_sym_STAR_STAR = 91, + anon_sym_CARET_CARET = 92, + anon_sym_DASH_GT = 93, + anon_sym_DOT = 94, anon_sym_after = 95, anon_sym_catch = 96, anon_sym_do = 97, @@ -126,156 +126,151 @@ enum { 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, + anon_sym_LPAREN2 = 102, + anon_sym_LBRACK2 = 103, + sym_comment = 104, + sym__quoted_content_i_single = 105, + sym__quoted_content_i_double = 106, + sym__quoted_content_i_heredoc_single = 107, + sym__quoted_content_i_heredoc_double = 108, + sym__quoted_content_i_parenthesis = 109, + sym__quoted_content_i_curly = 110, + sym__quoted_content_i_square = 111, + sym__quoted_content_i_angle = 112, + sym__quoted_content_i_bar = 113, + sym__quoted_content_i_slash = 114, + sym__quoted_content_single = 115, + sym__quoted_content_double = 116, + sym__quoted_content_heredoc_single = 117, + sym__quoted_content_heredoc_double = 118, + sym__quoted_content_parenthesis = 119, + sym__quoted_content_curly = 120, + sym__quoted_content_square = 121, + sym__quoted_content_angle = 122, + sym__quoted_content_bar = 123, + sym__quoted_content_slash = 124, + sym__newline_before_do = 125, + sym__newline_before_binary_operator = 126, + sym__newline_before_comment = 127, + sym__before_unary_op = 128, + sym__not_in = 129, + sym__quoted_atom_start = 130, + sym_source = 131, + sym__terminator = 132, + sym__expression = 133, + sym_block = 134, + sym__identifier = 135, + sym_identifier = 136, + sym_special_identifier = 137, + sym_boolean = 138, + sym_nil = 139, + sym__atom = 140, + sym_quoted_atom = 141, + sym__quoted_i_double = 142, + sym__quoted_double = 143, + sym__quoted_i_single = 144, + sym__quoted_single = 145, + sym__quoted_i_heredoc_single = 146, + sym__quoted_heredoc_single = 147, + sym__quoted_i_heredoc_double = 148, + sym__quoted_heredoc_double = 149, + sym__quoted_i_parenthesis = 150, + sym__quoted_parenthesis = 151, + sym__quoted_i_curly = 152, + sym__quoted_curly = 153, + sym__quoted_i_square = 154, + sym__quoted_square = 155, + sym__quoted_i_angle = 156, + sym__quoted_angle = 157, + sym__quoted_i_bar = 158, + sym__quoted_bar = 159, + sym__quoted_i_slash = 160, + sym__quoted_slash = 161, + sym_string = 162, + sym_charlist = 163, + sym_interpolation = 164, + sym_sigil = 165, + sym_keywords = 166, + sym__keywords_with_trailing_separator = 167, + sym_pair = 168, + sym__keyword = 169, + sym_quoted_keyword = 170, + sym_list = 171, + sym_tuple = 172, + sym_bitstring = 173, + sym_map = 174, + sym_struct = 175, + sym__items_with_trailing_separator = 176, + sym_unary_operator = 177, + sym__capture_expression = 178, + sym_binary_operator = 179, + sym_operator_identifier = 180, + sym_dot = 181, + sym_call = 182, + sym__call_without_parentheses = 183, + sym__call_with_parentheses = 184, + sym__local_call_without_parentheses = 185, + sym__local_call_with_parentheses = 186, + sym__local_call_just_do_block = 187, + sym__remote_call_without_parentheses = 188, + sym__remote_call_with_parentheses = 189, + sym__remote_dot = 190, + sym__anonymous_call = 191, + sym__anonymous_dot = 192, + sym__double_call = 193, + sym__call_arguments_with_parentheses = 194, + sym__call_arguments_with_parentheses_immediate = 195, + sym__call_arguments_with_trailing_separator = 196, + sym__call_arguments_without_parentheses = 197, + sym_do_block = 198, + sym_after_block = 199, + sym_rescue_block = 200, + sym_catch_block = 201, + sym_else_block = 202, + sym_access_call = 203, + sym_stab_clause = 204, + sym__stab_clause_left = 205, + sym__stab_clause_arguments_with_parentheses = 206, + sym__stab_clause_arguments_without_parentheses = 207, + sym__stab_clause_arguments_with_parentheses_with_guard = 208, + sym__stab_clause_arguments_without_parentheses_with_guard = 209, + sym_body = 210, + sym_anonymous_function = 211, + aux_sym_source_repeat1 = 212, + aux_sym__terminator_repeat1 = 213, + aux_sym_block_repeat1 = 214, + aux_sym_block_repeat2 = 215, + aux_sym__quoted_i_double_repeat1 = 216, + aux_sym__quoted_double_repeat1 = 217, + aux_sym__quoted_i_single_repeat1 = 218, + aux_sym__quoted_single_repeat1 = 219, + aux_sym__quoted_i_heredoc_single_repeat1 = 220, + aux_sym__quoted_heredoc_single_repeat1 = 221, + aux_sym__quoted_i_heredoc_double_repeat1 = 222, + aux_sym__quoted_heredoc_double_repeat1 = 223, + aux_sym__quoted_i_parenthesis_repeat1 = 224, + aux_sym__quoted_parenthesis_repeat1 = 225, + aux_sym__quoted_i_curly_repeat1 = 226, + aux_sym__quoted_curly_repeat1 = 227, + aux_sym__quoted_i_square_repeat1 = 228, + aux_sym__quoted_square_repeat1 = 229, + aux_sym__quoted_i_angle_repeat1 = 230, + aux_sym__quoted_angle_repeat1 = 231, + aux_sym__quoted_i_bar_repeat1 = 232, + aux_sym__quoted_bar_repeat1 = 233, + aux_sym__quoted_i_slash_repeat1 = 234, + aux_sym__quoted_slash_repeat1 = 235, + aux_sym_keywords_repeat1 = 236, + aux_sym__items_with_trailing_separator_repeat1 = 237, + aux_sym_do_block_repeat1 = 238, + aux_sym__stab_clause_arguments_without_parentheses_repeat1 = 239, + aux_sym_anonymous_function_repeat1 = 240, + alias_sym_map_content = 241, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", - [anon_sym_LF] = "\n", + [aux_sym__terminator_token1] = "_terminator_token1", [anon_sym_SEMI] = ";", [anon_sym_LPAREN] = "(", [anon_sym_RPAREN] = ")", @@ -287,34 +282,63 @@ static const char * const ts_symbol_names[] = { [anon_sym___ENV__] = "__ENV__", [anon_sym___CALLER__] = "__CALLER__", [anon_sym___STACKTRACE__] = "__STACKTRACE__", - [sym__alias_single] = "_alias_single", - [sym__alias_multi] = "_alias_multi", + [sym_alias] = "alias", [sym_integer] = "integer", [sym_float] = "float", - [sym__atom_word_literal] = "atom_literal", - [anon_sym_DASH_GT] = "->", - [anon_sym_COLON_COLON] = "::", + [sym_char] = "char", + [anon_sym_true] = "true", + [anon_sym_false] = "false", + [anon_sym_nil] = "nil", + [sym_atom] = "atom", + [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_LT] = "<", + [anon_sym_GT] = ">", [anon_sym_PIPE] = "|", + [anon_sym_SLASH] = "/", + [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_COMMA] = ",", + [sym_keyword] = "keyword", + [aux_sym_quoted_keyword_token1] = "quoted_keyword_token1", + [anon_sym_LT_LT] = "<<", + [anon_sym_GT_GT] = ">>", + [anon_sym_PERCENT] = "%", [anon_sym_AMP] = "&", - [anon_sym_EQ] = "=", - [anon_sym_CARET_CARET_CARET] = "^^^", - [anon_sym_SLASH_SLASH] = "//", - [anon_sym_STAR_STAR] = "**", - [anon_sym_DOT] = ".", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_BANG] = "!", + [anon_sym_CARET] = "^", + [anon_sym_TILDE_TILDE_TILDE] = "~~~", + [anon_sym_not] = "not", [anon_sym_AT] = "@", [anon_sym_LT_DASH] = "<-", [anon_sym_BSLASH_BSLASH] = "\\\\", + [anon_sym_when] = "when", + [anon_sym_COLON_COLON] = "::", + [anon_sym_EQ_GT] = "=>", + [anon_sym_EQ] = "=", [anon_sym_PIPE_PIPE] = "||", [anon_sym_PIPE_PIPE_PIPE] = "|||", + [anon_sym_or] = "or", [anon_sym_AMP_AMP] = "&&", [anon_sym_AMP_AMP_AMP] = "&&&", + [anon_sym_and] = "and", [anon_sym_EQ_EQ] = "==", [anon_sym_BANG_EQ] = "!=", [anon_sym_EQ_TILDE] = "=~", [anon_sym_EQ_EQ_EQ] = "===", [anon_sym_BANG_EQ_EQ] = "!==", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", [anon_sym_LT_EQ] = "<=", [anon_sym_GT_EQ] = ">=", [anon_sym_PIPE_GT] = "|>", @@ -326,49 +350,20 @@ static const char * const ts_symbol_names[] = { [anon_sym_TILDE_GT] = "~>", [anon_sym_LT_TILDE_GT] = "<~>", [anon_sym_LT_PIPE_GT] = "<|>", + [anon_sym_in] = "in", + [anon_sym_CARET_CARET_CARET] = "^^^", + [anon_sym_SLASH_SLASH] = "//", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", [anon_sym_PLUS_PLUS_PLUS] = "+++", [anon_sym_DASH_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_STAR_STAR] = "**", [anon_sym_CARET_CARET] = "^^", - [anon_sym_COMMA] = ",", - [anon_sym_true] = "true", - [anon_sym_false] = "false", - [anon_sym_nil] = "nil", + [anon_sym_DASH_GT] = "->", + [anon_sym_DOT] = ".", [anon_sym_after] = "after", [anon_sym_catch] = "catch", [anon_sym_do] = "do", @@ -376,40 +371,35 @@ static const char * const ts_symbol_names[] = { [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__quoted_content_i_single] = "quoted_content", + [sym__quoted_content_i_double] = "quoted_content", + [sym__quoted_content_i_heredoc_single] = "quoted_content", + [sym__quoted_content_i_heredoc_double] = "quoted_content", + [sym__quoted_content_i_parenthesis] = "quoted_content", + [sym__quoted_content_i_curly] = "quoted_content", + [sym__quoted_content_i_square] = "quoted_content", + [sym__quoted_content_i_angle] = "quoted_content", + [sym__quoted_content_i_bar] = "quoted_content", + [sym__quoted_content_i_slash] = "quoted_content", + [sym__quoted_content_single] = "quoted_content", + [sym__quoted_content_double] = "quoted_content", + [sym__quoted_content_heredoc_single] = "quoted_content", + [sym__quoted_content_heredoc_double] = "quoted_content", + [sym__quoted_content_parenthesis] = "quoted_content", + [sym__quoted_content_curly] = "quoted_content", + [sym__quoted_content_square] = "quoted_content", + [sym__quoted_content_angle] = "quoted_content", + [sym__quoted_content_bar] = "quoted_content", + [sym__quoted_content_slash] = "quoted_content", [sym__newline_before_do] = "_newline_before_do", - [sym__newline_before_binary_op] = "_newline_before_binary_op", + [sym__newline_before_binary_operator] = "_newline_before_binary_operator", [sym__newline_before_comment] = "_newline_before_comment", [sym__before_unary_op] = "_before_unary_op", [sym__not_in] = "_not_in", + [sym__quoted_atom_start] = "_quoted_atom_start", [sym_source] = "source", [sym__terminator] = "_terminator", [sym__expression] = "_expression", @@ -417,10 +407,10 @@ static const char * const ts_symbol_names[] = { [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_boolean] = "boolean", + [sym_nil] = "nil", + [sym__atom] = "_atom", + [sym_quoted_atom] = "quoted_atom", [sym__quoted_i_double] = "_quoted_i_double", [sym__quoted_double] = "_quoted_double", [sym__quoted_i_single] = "_quoted_i_single", @@ -445,55 +435,56 @@ static const char * const ts_symbol_names[] = { [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__keywords_with_trailing_separator] = "keywords", [sym_pair] = "pair", - [sym_keyword] = "keyword", + [sym__keyword] = "_keyword", + [sym_quoted_keyword] = "quoted_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_unary_operator] = "unary_operator", + [sym__capture_expression] = "_capture_expression", + [sym_binary_operator] = "binary_operator", + [sym_operator_identifier] = "operator_identifier", + [sym_dot] = "dot", [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__call_without_parentheses] = "_call_without_parentheses", + [sym__call_with_parentheses] = "_call_with_parentheses", + [sym__local_call_without_parentheses] = "_local_call_without_parentheses", + [sym__local_call_with_parentheses] = "_local_call_with_parentheses", + [sym__local_call_just_do_block] = "_local_call_just_do_block", + [sym__remote_call_without_parentheses] = "_remote_call_without_parentheses", + [sym__remote_call_with_parentheses] = "_remote_call_with_parentheses", [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__double_call] = "_double_call", + [sym__call_arguments_with_parentheses] = "arguments", + [sym__call_arguments_with_parentheses_immediate] = "arguments", + [sym__call_arguments_with_trailing_separator] = "_call_arguments_with_trailing_separator", + [sym__call_arguments_without_parentheses] = "arguments", [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_access_call] = "access_call", [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__stab_clause_arguments_with_parentheses] = "arguments", + [sym__stab_clause_arguments_without_parentheses] = "arguments", + [sym__stab_clause_arguments_with_parentheses_with_guard] = "binary_operator", + [sym__stab_clause_arguments_without_parentheses_with_guard] = "binary_operator", [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_block_repeat2] = "block_repeat2", [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", @@ -517,15 +508,14 @@ static const char * const ts_symbol_names[] = { [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__stab_clause_arguments_without_parentheses_repeat1] = "_stab_clause_arguments_without_parentheses_repeat1", [aux_sym_anonymous_function_repeat1] = "anonymous_function_repeat1", + [alias_sym_map_content] = "map_content", }; static const TSSymbol ts_symbol_map[] = { [ts_builtin_sym_end] = ts_builtin_sym_end, - [anon_sym_LF] = anon_sym_LF, + [aux_sym__terminator_token1] = aux_sym__terminator_token1, [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_RPAREN] = anon_sym_RPAREN, @@ -537,34 +527,63 @@ static const TSSymbol ts_symbol_map[] = { [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_alias] = sym_alias, [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, + [sym_char] = sym_char, + [anon_sym_true] = anon_sym_true, + [anon_sym_false] = anon_sym_false, + [anon_sym_nil] = anon_sym_nil, + [sym_atom] = sym_atom, + [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_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_SLASH] = anon_sym_SLASH, + [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_COMMA] = anon_sym_COMMA, + [sym_keyword] = sym_keyword, + [aux_sym_quoted_keyword_token1] = aux_sym_quoted_keyword_token1, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_PERCENT] = anon_sym_PERCENT, [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_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_BANG] = anon_sym_BANG, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_TILDE_TILDE_TILDE] = anon_sym_TILDE_TILDE_TILDE, + [anon_sym_not] = anon_sym_not, [anon_sym_AT] = anon_sym_AT, [anon_sym_LT_DASH] = anon_sym_LT_DASH, [anon_sym_BSLASH_BSLASH] = anon_sym_BSLASH_BSLASH, + [anon_sym_when] = anon_sym_when, + [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_EQ] = anon_sym_EQ, [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_PIPE_PIPE_PIPE] = anon_sym_PIPE_PIPE_PIPE, + [anon_sym_or] = anon_sym_or, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, [anon_sym_AMP_AMP_AMP] = anon_sym_AMP_AMP_AMP, + [anon_sym_and] = anon_sym_and, [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, @@ -576,49 +595,20 @@ static const TSSymbol ts_symbol_map[] = { [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_in] = anon_sym_in, + [anon_sym_CARET_CARET_CARET] = anon_sym_CARET_CARET_CARET, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, [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_STAR_STAR] = anon_sym_STAR_STAR, [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_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_DOT] = anon_sym_DOT, [anon_sym_after] = anon_sym_after, [anon_sym_catch] = anon_sym_catch, [anon_sym_do] = anon_sym_do, @@ -626,9 +616,6 @@ static const TSSymbol ts_symbol_map[] = { [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, @@ -652,14 +639,12 @@ static const TSSymbol ts_symbol_map[] = { [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_binary_operator] = sym__newline_before_binary_operator, [sym__newline_before_comment] = sym__newline_before_comment, [sym__before_unary_op] = sym__before_unary_op, [sym__not_in] = sym__not_in, + [sym__quoted_atom_start] = sym__quoted_atom_start, [sym_source] = sym_source, [sym__terminator] = sym__terminator, [sym__expression] = sym__expression, @@ -667,10 +652,10 @@ static const TSSymbol ts_symbol_map[] = { [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_boolean] = sym_boolean, + [sym_nil] = sym_nil, + [sym__atom] = sym__atom, + [sym_quoted_atom] = sym_quoted_atom, [sym__quoted_i_double] = sym__quoted_i_double, [sym__quoted_double] = sym__quoted_double, [sym__quoted_i_single] = sym__quoted_i_single, @@ -695,55 +680,56 @@ static const TSSymbol ts_symbol_map[] = { [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__keywords_with_trailing_separator] = sym_keywords, [sym_pair] = sym_pair, - [sym_keyword] = sym_keyword, + [sym__keyword] = sym__keyword, + [sym_quoted_keyword] = sym_quoted_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_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_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__call_without_parentheses] = sym__call_without_parentheses, + [sym__call_with_parentheses] = sym__call_with_parentheses, + [sym__local_call_without_parentheses] = sym__local_call_without_parentheses, + [sym__local_call_with_parentheses] = sym__local_call_with_parentheses, + [sym__local_call_just_do_block] = sym__local_call_just_do_block, + [sym__remote_call_without_parentheses] = sym__remote_call_without_parentheses, + [sym__remote_call_with_parentheses] = sym__remote_call_with_parentheses, [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__double_call] = sym__double_call, + [sym__call_arguments_with_parentheses] = sym__call_arguments_with_parentheses, + [sym__call_arguments_with_parentheses_immediate] = sym__call_arguments_with_parentheses, + [sym__call_arguments_with_trailing_separator] = sym__call_arguments_with_trailing_separator, + [sym__call_arguments_without_parentheses] = sym__call_arguments_with_parentheses, [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_access_call] = sym_access_call, [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__stab_clause_arguments_with_parentheses] = sym__call_arguments_with_parentheses, + [sym__stab_clause_arguments_without_parentheses] = sym__call_arguments_with_parentheses, + [sym__stab_clause_arguments_with_parentheses_with_guard] = sym_binary_operator, + [sym__stab_clause_arguments_without_parentheses_with_guard] = sym_binary_operator, [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_block_repeat2] = aux_sym_block_repeat2, [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, @@ -767,10 +753,9 @@ static const TSSymbol ts_symbol_map[] = { [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__stab_clause_arguments_without_parentheses_repeat1] = aux_sym__stab_clause_arguments_without_parentheses_repeat1, [aux_sym_anonymous_function_repeat1] = aux_sym_anonymous_function_repeat1, + [alias_sym_map_content] = alias_sym_map_content, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -778,8 +763,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [anon_sym_LF] = { - .visible = true, + [aux_sym__terminator_token1] = { + .visible = false, .named = false, }, [anon_sym_SEMI] = { @@ -826,12 +811,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym__alias_single] = { - .visible = false, - .named = true, - }, - [sym__alias_multi] = { - .visible = false, + [sym_alias] = { + .visible = true, .named = true, }, [sym_integer] = { @@ -842,15 +823,63 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__atom_word_literal] = { + [sym_char] = { .visible = true, .named = true, }, - [anon_sym_DASH_GT] = { + [anon_sym_true] = { .visible = true, .named = false, }, - [anon_sym_COLON_COLON] = { + [anon_sym_false] = { + .visible = true, + .named = false, + }, + [anon_sym_nil] = { + .visible = true, + .named = false, + }, + [sym_atom] = { + .visible = true, + .named = true, + }, + [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_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { .visible = true, .named = false, }, @@ -858,27 +887,83 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SLASH] = { + .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_COMMA] = { + .visible = true, + .named = false, + }, + [sym_keyword] = { + .visible = true, + .named = true, + }, + [aux_sym_quoted_keyword_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, [anon_sym_AMP] = { .visible = true, .named = false, }, - [anon_sym_EQ] = { + [anon_sym_PLUS] = { .visible = true, .named = false, }, - [anon_sym_CARET_CARET_CARET] = { + [anon_sym_DASH] = { .visible = true, .named = false, }, - [anon_sym_SLASH_SLASH] = { + [anon_sym_BANG] = { .visible = true, .named = false, }, - [anon_sym_STAR_STAR] = { + [anon_sym_CARET] = { .visible = true, .named = false, }, - [anon_sym_DOT] = { + [anon_sym_TILDE_TILDE_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_not] = { .visible = true, .named = false, }, @@ -894,6 +979,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_when] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_PIPE_PIPE] = { .visible = true, .named = false, @@ -902,6 +1003,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, [anon_sym_AMP_AMP] = { .visible = true, .named = false, @@ -910,6 +1015,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, [anon_sym_EQ_EQ] = { .visible = true, .named = false, @@ -930,14 +1039,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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, @@ -982,6 +1083,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_CARET_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, [anon_sym_PLUS_PLUS] = { .visible = true, .named = false, @@ -1006,131 +1119,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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] = { + [anon_sym_STAR_STAR] = { .visible = true, .named = false, }, @@ -1138,19 +1131,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COMMA] = { + [anon_sym_DASH_GT] = { .visible = true, .named = false, }, - [anon_sym_true] = { - .visible = true, - .named = false, - }, - [anon_sym_false] = { - .visible = true, - .named = false, - }, - [anon_sym_nil] = { + [anon_sym_DOT] = { .visible = true, .named = false, }, @@ -1182,18 +1167,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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, @@ -1286,23 +1259,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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] = { + [sym__newline_before_binary_operator] = { .visible = false, .named = true, }, @@ -1318,6 +1279,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__quoted_atom_start] = { + .visible = false, + .named = true, + }, [sym_source] = { .visible = true, .named = true, @@ -1346,19 +1311,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_alias] = { + [sym_boolean] = { .visible = true, .named = true, }, - [sym_atom] = { + [sym_nil] = { .visible = true, .named = true, }, - [sym__atom_operator_literal] = { - .visible = true, + [sym__atom] = { + .visible = false, .named = true, }, - [sym__atom_special_literal] = { + [sym_quoted_atom] = { .visible = true, .named = true, }, @@ -1458,35 +1423,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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__keywords_with_trailing_separator] = { + .visible = true, + .named = true, + }, [sym_pair] = { .visible = true, .named = true, }, - [sym_keyword] = { + [sym__keyword] = { + .visible = false, + .named = true, + }, + [sym_quoted_keyword] = { .visible = true, .named = true, }, @@ -1510,19 +1463,27 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_map_content] = { - .visible = true, - .named = true, - }, [sym__items_with_trailing_separator] = { .visible = false, .named = true, }, - [sym_boolean] = { + [sym_unary_operator] = { .visible = true, .named = true, }, - [sym_nil] = { + [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, }, @@ -1530,31 +1491,31 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__parenthesised_call] = { - .visible = true, - .named = true, - }, - [sym__call_on_call] = { + [sym__call_without_parentheses] = { .visible = false, .named = true, }, - [sym__local_call_with_arguments] = { + [sym__call_with_parentheses] = { .visible = false, .named = true, }, - [sym__parenthesised_local_call_with_arguments] = { + [sym__local_call_without_parentheses] = { .visible = false, .named = true, }, - [sym__local_call_without_arguments] = { + [sym__local_call_with_parentheses] = { .visible = false, .named = true, }, - [sym__remote_call] = { + [sym__local_call_just_do_block] = { .visible = false, .named = true, }, - [sym__parenthesised_remote_call] = { + [sym__remote_call_without_parentheses] = { + .visible = false, + .named = true, + }, + [sym__remote_call_with_parentheses] = { .visible = false, .named = true, }, @@ -1562,10 +1523,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__parenthesised_call_arguments] = { - .visible = true, - .named = true, - }, [sym__anonymous_call] = { .visible = false, .named = true, @@ -1574,15 +1531,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__anonymous_arguments] = { - .visible = true, - .named = true, - }, - [sym__call_arguments] = { + [sym__double_call] = { .visible = false, .named = true, }, - [sym_access_call] = { + [sym__call_arguments_with_parentheses] = { + .visible = true, + .named = true, + }, + [sym__call_arguments_with_parentheses_immediate] = { + .visible = true, + .named = true, + }, + [sym__call_arguments_with_trailing_separator] = { + .visible = false, + .named = true, + }, + [sym__call_arguments_without_parentheses] = { .visible = true, .named = true, }, @@ -1606,6 +1571,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_access_call] = { + .visible = true, + .named = true, + }, [sym_stab_clause] = { .visible = true, .named = true, @@ -1614,24 +1583,20 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__stab_clause_parentheses_arguments] = { + [sym__stab_clause_arguments_with_parentheses] = { .visible = true, .named = true, }, - [sym__stab_clause_parentheses_arguments_with_guard] = { + [sym__stab_clause_arguments_without_parentheses] = { .visible = true, .named = true, }, - [sym__stab_clause_arguments_with_guard] = { + [sym__stab_clause_arguments_with_parentheses_with_guard] = { .visible = true, .named = true, }, - [sym__stab_clause_arguments] = { - .visible = false, - .named = true, - }, - [sym__stab_clause_arguments_expression] = { - .visible = false, + [sym__stab_clause_arguments_without_parentheses_with_guard] = { + .visible = true, .named = true, }, [sym_body] = { @@ -1654,6 +1619,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_block_repeat2] = { + .visible = false, + .named = false, + }, [aux_sym__quoted_i_double_repeat1] = { .visible = false, .named = false, @@ -1746,15 +1715,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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] = { + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = { .visible = false, .named = false, }, @@ -1762,6 +1723,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [alias_sym_map_content] = { + .visible = true, + .named = true, + }, }; enum { @@ -1779,8 +1744,8 @@ static const char * const ts_field_names[] = { 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}, + [3] = {.index = 1, .length = 1}, + [4] = {.index = 2, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1797,56 +1762,47 @@ static const TSFieldMapEntry ts_field_map_entries[] = { 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] = { + [5] = { [2] = sym_identifier, }, - [9] = { + [6] = { [2] = sym_string, }, - [10] = { + [7] = { [2] = sym_charlist, }, + [8] = { + [2] = alias_sym_map_content, + }, + [9] = { + [3] = alias_sym_map_content, + }, }; 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__items_with_trailing_separator, 2, + sym__items_with_trailing_separator, + alias_sym_map_content, + sym__call_with_parentheses, 2, + sym__call_with_parentheses, sym_call, - sym__parenthesised_remote_call, 2, - sym__parenthesised_remote_call, + sym__local_call_with_parentheses, 2, + sym__local_call_with_parentheses, + sym_call, + sym__remote_call_with_parentheses, 2, + sym__remote_call_with_parentheses, 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, }; @@ -8734,7 +8690,7 @@ static inline bool sym_unused_identifier_character_set_2(int32_t c) { : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } -static inline bool sym__atom_word_literal_character_set_1(int32_t c) { +static inline bool sym_keyword_character_set_1(int32_t c) { return (c < 72106 ? (c < 68448 ? (c < 8168 @@ -9002,7 +8958,277 @@ static inline bool sym__atom_word_literal_character_set_1(int32_t c) { : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))); } -static inline bool sym__atom_word_literal_character_set_2(int32_t c) { +static inline bool sym_keyword_character_set_2(int32_t c) { + return (c < 72096 + ? (c < 68416 + ? (c < 8152 + ? (c < 4295 + ? (c < 904 + ? (c < 880 + ? (c < 216 + ? (c < 192 + ? (c >= 'A' && c <= 'Z') + : c <= 214) + : (c <= 222 || (c >= 256 && c <= 590))) + : (c <= 882 || (c < 895 + ? c == 886 + : (c <= 895 || c == 902)))) + : (c <= 906 || (c < 1015 + ? (c < 910 + ? c == 908 + : (c <= 929 || (c >= 931 && c <= 1012))) + : (c <= 1152 || (c < 1329 + ? (c >= 1162 && c <= 1326) + : (c <= 1366 || (c >= 4256 && c <= 4293))))))) + : (c <= 4295 || (c < 8008 + ? (c < 7357 + ? (c < 5024 + ? c == 4301 + : (c <= 5109 || (c >= 7312 && c <= 7354))) + : (c <= 7359 || (c < 7960 + ? (c >= 7680 && c <= 7951) + : (c <= 7965 || (c >= 7976 && c <= 7999))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? c == 8025 + : (c <= 8027 || c == 8029)) + : (c <= 8047 || (c < 8120 + ? (c >= 8072 && c <= 8111) + : (c <= 8124 || (c >= 8136 && c <= 8140))))))))) + : (c <= 8155 || (c < 11499 + ? (c < 8486 + ? (c < 8459 + ? (c < 8450 + ? (c < 8184 + ? (c >= 8168 && c <= 8172) + : c <= 8188) + : (c <= 8450 || c == 8455)) + : (c <= 8466 || (c < 8473 + ? c == 8469 + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8517 + ? (c < 8490 + ? c == 8488 + : (c <= 8499 || (c >= 8510 && c <= 8511))) + : (c <= 8517 || (c < 11264 + ? c == 8579 + : (c <= 11310 || (c >= 11360 && c <= 11490))))))) + : (c <= 11501 || (c < 42946 + ? (c < 42560 + ? (c < 13313 + ? c == 11506 + : (c <= 19902 || (c >= 19969 && c <= 40955))) + : (c <= 42604 || (c < 42786 + ? (c >= 42624 && c <= 42650) + : (c <= 42886 || (c >= 42891 && c <= 42942))))) + : (c <= 42953 || (c < 66560 + ? (c < 44033 + ? c == 42997 + : (c <= 55202 || (c >= 65313 && c <= 65338))) + : (c <= 66599 || (c < 68310 + ? (c >= 66736 && c <= 66771) + : (c <= 68324 || (c >= 68352 && c <= 68405))))))))))) + : (c <= 68437 || (c < 70320 + ? (c < 69891 + ? (c < 69376 + ? (c < 68800 + ? (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))) + : (c <= 68850 || (c < 69248 + ? (c >= 68864 && c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))))) + : (c <= 69404 || (c < 69600 + ? (c < 69424 + ? c == 69415 + : (c <= 69445 || (c >= 69552 && c <= 69572))) + : (c <= 69622 || (c < 69763 + ? (c >= 69635 && c <= 69687) + : (c <= 69807 || (c >= 69840 && c <= 69864))))))) + : (c <= 69926 || (c < 70108 + ? (c < 70006 + ? (c < 69959 + ? c == 69956 + : (c <= 69959 || (c >= 69968 && c <= 70002))) + : (c <= 70006 || (c < 70081 + ? (c >= 70019 && c <= 70066) + : (c <= 70084 || c == 70106)))) + : (c <= 70108 || (c < 70280 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70287 + ? (c >= 70282 && c <= 70285) + : (c <= 70301 || (c >= 70303 && c <= 70312))))))))) + : (c <= 70366 || (c < 71040 + ? (c < 70480 + ? (c < 70442 + ? (c < 70415 + ? (c >= 70405 && c <= 70412) + : (c <= 70416 || (c >= 70419 && c <= 70440))) + : (c <= 70448 || (c < 70453 + ? (c >= 70450 && c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70751 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : (c <= 70708 || (c >= 70727 && c <= 70730))) + : (c <= 70753 || (c < 70852 + ? (c >= 70784 && c <= 70831) + : (c <= 70853 || c == 70855)))))) + : (c <= 71086 || (c < 71840 + ? (c < 71296 + ? (c < 71168 + ? (c >= 71128 && c <= 71131) + : (c <= 71215 || c == 71236)) + : (c <= 71338 || (c < 71424 + ? c == 71352 + : (c <= 71450 || (c >= 71680 && c <= 71723))))) + : (c <= 71903 || (c < 71957 + ? (c < 71945 + ? (c >= 71935 && c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))) + : (c <= 71958 || (c < 71999 + ? (c >= 71960 && c <= 71983) + : (c <= 71999 || c == 72001)))))))))))) + : (c <= 72103 || (c < 120086 + ? (c < 92928 + ? (c < 72971 + ? (c < 72349 + ? (c < 72203 + ? (c < 72163 + ? (c < 72161 + ? (c >= 72106 && c <= 72144) + : c <= 72161) + : (c <= 72163 || c == 72192)) + : (c <= 72242 || (c < 72272 + ? c == 72250 + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72768 + ? (c < 72704 + ? (c >= 72384 && c <= 72440) + : (c <= 72712 || (c >= 72714 && c <= 72750))) + : (c <= 72768 || (c < 72960 + ? (c >= 72818 && c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))))) + : (c <= 73008 || (c < 73728 + ? (c < 73066 + ? (c < 73056 + ? c == 73030 + : (c <= 73061 || (c >= 73063 && c <= 73064))) + : (c <= 73097 || (c < 73440 + ? c == 73112 + : (c <= 73458 || c == 73648)))) + : (c <= 74649 || (c < 82944 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : (c <= 75075 || (c >= 77824 && c <= 78894))) + : (c <= 83526 || (c < 92736 + ? (c >= 92160 && c <= 92728) + : (c <= 92766 || (c >= 92880 && c <= 92909))))))))) + : (c <= 92975 || (c < 113664 + ? (c < 94179 + ? (c < 93952 + ? (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : 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_keyword_character_set_3(int32_t c) { return (c < 42946 ? (c < 3904 ? (c < 2654 @@ -9740,953 +9966,7 @@ static inline bool sym__atom_word_literal_character_set_2(int32_t c) { : (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) { +static inline bool sym_keyword_character_set_4(int32_t c) { return (c < 42946 ? (c < 3713 ? (c < 2707 @@ -11638,4788 +10918,6864 @@ static inline bool sym__atom_word_literal_character_set_4(int32_t c) { : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } +static inline bool sym_keyword_character_set_5(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 bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - 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 (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(269); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(743); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(741); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(145); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(546); + if (lookahead == 'c') ADVANCE(544); + if (lookahead == 'd') ADVANCE(551); + if (lookahead == 'e') ADVANCE(549); + if (lookahead == 'f') ADVANCE(543); + if (lookahead == 'i') ADVANCE(550); + if (lookahead == 'n') ADVANCE(548); + if (lookahead == 'o') ADVANCE(552); + if (lookahead == 'r') ADVANCE(545); + if (lookahead == 't') ADVANCE(553); + if (lookahead == 'w') ADVANCE(547); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); 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); + lookahead == ' ') SKIP(257) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(554); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(556); + if (aux_sym_identifier_token1_character_set_1(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); 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); + if (lookahead == '\n') ADVANCE(269); END_STATE(); case 2: - if (lookahead == '\n') SKIP(1) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') ADVANCE(269); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(743); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(317); + if (lookahead == 'c') ADVANCE(305); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'e') ADVANCE(321); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 'r') ADVANCE(314); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(2) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_2(lookahead)) ADVANCE(176); END_STATE(); case 3: - if (lookahead == '\n') SKIP(40) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(2) END_STATE(); case 4: - if (lookahead == '\n') SKIP(41) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(2) + if (lookahead == '\r') SKIP(3) + if (lookahead == '\\') ADVANCE(622); END_STATE(); case 5: - if (lookahead == '\n') SKIP(44) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(77) END_STATE(); case 6: - if (lookahead == '\n') SKIP(45) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(77) + if (lookahead == '\r') SKIP(5) + if (lookahead == '\\') ADVANCE(621); END_STATE(); case 7: - if (lookahead == '\n') SKIP(46) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(79) END_STATE(); case 8: - if (lookahead == '\n') SKIP(47) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(79) + if (lookahead == '\r') SKIP(7) + if (lookahead == '\\') ADVANCE(622); END_STATE(); case 9: - if (lookahead == '\n') SKIP(48) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(84) END_STATE(); case 10: - if (lookahead == '\n') SKIP(50) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(84) + if (lookahead == '\r') SKIP(9) + if (lookahead == '\\') ADVANCE(622); END_STATE(); case 11: - if (lookahead == '\n') SKIP(51) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(92) END_STATE(); case 12: - if (lookahead == '\n') SKIP(52) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(92) + if (lookahead == '\r') SKIP(11) + if (lookahead == '\\') ADVANCE(622); END_STATE(); case 13: - if (lookahead == '\n') SKIP(54) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(94) END_STATE(); case 14: - if (lookahead == '\n') SKIP(58) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(94) + if (lookahead == '\r') SKIP(13) + if (lookahead == '\\') ADVANCE(621); END_STATE(); case 15: - if (lookahead == '\n') SKIP(59) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(96) END_STATE(); case 16: - if (lookahead == '\n') SKIP(63) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(96) + if (lookahead == '\r') SKIP(15) + if (lookahead == '\\') ADVANCE(622); END_STATE(); case 17: - if (lookahead == '\n') SKIP(65) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(98) END_STATE(); case 18: - if (lookahead == '\n') SKIP(66) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(98) + if (lookahead == '\r') SKIP(17) + if (lookahead == '\\') ADVANCE(621); END_STATE(); case 19: - if (lookahead == '\n') SKIP(68) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(100) END_STATE(); case 20: - if (lookahead == '\n') SKIP(70) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(100) + if (lookahead == '\r') SKIP(19) + if (lookahead == '\\') ADVANCE(621); END_STATE(); case 21: - if (lookahead == '\n') SKIP(72) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(103) END_STATE(); case 22: - if (lookahead == '\n') SKIP(74) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(103) + if (lookahead == '\r') SKIP(21) + if (lookahead == '\\') ADVANCE(621); END_STATE(); case 23: - if (lookahead == '\n') SKIP(76) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(105) END_STATE(); case 24: - if (lookahead == '\n') SKIP(25) + if (lookahead == '\n') SKIP(105) + if (lookahead == '\r') SKIP(23) + if (lookahead == '\\') ADVANCE(621); 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) + if (lookahead == '\n') SKIP(108) 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) + if (lookahead == '\n') SKIP(108) + if (lookahead == '\r') SKIP(25) + if (lookahead == '\\') ADVANCE(621); 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) + if (lookahead == '\n') SKIP(114) 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); + if (lookahead == '\n') SKIP(114) + if (lookahead == '\r') SKIP(27) + if (lookahead == '\\') ADVANCE(621); END_STATE(); case 29: - if (lookahead == '\n') SKIP(26) + if (lookahead == '\n') SKIP(116) END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(454); - if (lookahead == 'u') ADVANCE(129); - if (lookahead == 'x') ADVANCE(128); - if (lookahead != 0) ADVANCE(453); + if (lookahead == '\n') SKIP(116) + if (lookahead == '\r') SKIP(29) + if (lookahead == '\\') ADVANCE(621); END_STATE(); case 31: - if (lookahead == '\n') SKIP(27) + if (lookahead == '\n') SKIP(122) 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) + if (lookahead == '\n') SKIP(122) + if (lookahead == '\r') SKIP(31) + if (lookahead == '\\') ADVANCE(621); 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) + if (lookahead == '\n') SKIP(124) 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) + if (lookahead == '\n') SKIP(124) + if (lookahead == '\r') SKIP(33) + if (lookahead == '\\') ADVANCE(621); 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) + if (lookahead == '\n') SKIP(127) END_STATE(); case 36: - if (lookahead == '\n') SKIP(77) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(127) + if (lookahead == '\r') SKIP(35) + if (lookahead == '\\') ADVANCE(621); END_STATE(); case 37: - if (lookahead == '\n') SKIP(43) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(130) END_STATE(); case 38: - if (lookahead == '\n') SKIP(56) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(130) + if (lookahead == '\r') SKIP(37) + if (lookahead == '\\') ADVANCE(621); END_STATE(); case 39: - if (lookahead == '\n') SKIP(61) - if (lookahead == '\\') ADVANCE(385); + if (lookahead == '\n') SKIP(133) 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); + if (lookahead == '\n') SKIP(133) + if (lookahead == '\r') SKIP(39) + if (lookahead == '\\') ADVANCE(621); 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); + if (lookahead == '\n') SKIP(136) 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); + if (lookahead == '\n') SKIP(136) + if (lookahead == '\r') SKIP(41) + if (lookahead == '\\') ADVANCE(621); 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); + if (lookahead == '\n') SKIP(139) 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); + if (lookahead == '\n') SKIP(139) + if (lookahead == '\r') SKIP(43) + if (lookahead == '\\') ADVANCE(621); 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); + if (lookahead == '\n') SKIP(142) 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); + if (lookahead == '\n') SKIP(142) + if (lookahead == '\r') SKIP(45) + if (lookahead == '\\') ADVANCE(621); 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); + if (lookahead == '\n') SKIP(50) 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); + if (lookahead == '\n') SKIP(50) + if (lookahead == '\r') SKIP(47) 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) + if (lookahead == '\n') ADVANCE(270); 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 == '\n') ADVANCE(270); + if (lookahead == '\r') ADVANCE(49); + if (lookahead == '!') ADVANCE(605); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(595); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '+') ADVANCE(598); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(601); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '<') ADVANCE(520); + if (lookahead == '>') ADVANCE(191); + if (lookahead == '@') ADVANCE(617); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') SKIP(48) + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(608); + if (lookahead == 'n') ADVANCE(218); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(529); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(236); 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 == '\n') ADVANCE(270); + if (lookahead == '\r') ADVANCE(49); + if (lookahead == '#') ADVANCE(744); + if (lookahead == ')') ADVANCE(301); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(186); + if (lookahead == '>') ADVANCE(191); + if (lookahead == '\\') SKIP(57) + if (lookahead == ']') ADVANCE(519); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '}') ADVANCE(517); 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 == '\n') ADVANCE(270); + if (lookahead == '\r') ADVANCE(49); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '\\') SKIP(60) 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 == '\n') ADVANCE(270); + if (lookahead == '\r') ADVANCE(49); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '\\') SKIP(60) if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(54) - if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + lookahead == ' ') SKIP(52) + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(555); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(542); 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) + if (lookahead == '\n') SKIP(144) 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); + if (lookahead == '\n') SKIP(144) + if (lookahead == '\r') SKIP(54) + if (lookahead == '\\') ADVANCE(166); 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) + if (lookahead == '\n') SKIP(51) 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); + if (lookahead == '\n') SKIP(51) + if (lookahead == '\r') SKIP(56) 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) + if (lookahead == '\n') ADVANCE(538); + if (lookahead == '\r') ADVANCE(537); + if (lookahead == 'u') ADVANCE(228); + if (lookahead == 'x') ADVANCE(227); + if (lookahead != 0) ADVANCE(537); 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) + if (lookahead == '\n') SKIP(52) 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); + if (lookahead == '\n') SKIP(52) + if (lookahead == '\r') SKIP(59) 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) + if (lookahead == '\n') ADVANCE(271); 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 == '\n') ADVANCE(271); + if (lookahead == '\r') ADVANCE(61); + if (lookahead == '"') ADVANCE(509); + if (lookahead == '#') ADVANCE(743); + if (lookahead == '\'') ADVANCE(511); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '\\') ADVANCE(58); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '|') ADVANCE(529); + if (lookahead == '}') ADVANCE(517); if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(63) - if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(498); + lookahead == ' ') SKIP(62) 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 == '\n') ADVANCE(271); + if (lookahead == '\r') ADVANCE(61); + if (lookahead == '"') ADVANCE(509); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '\'') ADVANCE(511); + if (lookahead == '\\') ADVANCE(58); 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 == '\n') ADVANCE(271); + if (lookahead == '\r') ADVANCE(61); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(743); + if (lookahead == '\'') ADVANCE(152); + if (lookahead == '\\') ADVANCE(58); if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(65) + lookahead == ' ') SKIP(64) 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 == '\n') ADVANCE(271); + if (lookahead == '\r') ADVANCE(61); + if (lookahead == '"') ADVANCE(147); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '\'') ADVANCE(152); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '>') ADVANCE(524); + if (lookahead == '\\') ADVANCE(58); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '|') ADVANCE(529); + if (lookahead == '}') ADVANCE(517); if (lookahead == '\t' || - lookahead == '\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) + if (lookahead == '\n') SKIP(82) 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); + if (lookahead == '\n') SKIP(82) + if (lookahead == '\r') SKIP(66) + if (lookahead == '\\') ADVANCE(622); 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) + if (lookahead == '\n') SKIP(87) 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); + if (lookahead == '\n') SKIP(87) + if (lookahead == '\r') SKIP(68) + if (lookahead == '\\') ADVANCE(622); 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) + if (lookahead == '\n') SKIP(90) 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); + if (lookahead == '\n') SKIP(90) + if (lookahead == '\r') SKIP(70) + if (lookahead == '\\') ADVANCE(622); 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) + if (lookahead == '\n') SKIP(111) 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); + if (lookahead == '\n') SKIP(111) + if (lookahead == '\r') SKIP(72) + if (lookahead == '\\') ADVANCE(621); 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) + if (lookahead == '\n') SKIP(119) 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); + if (lookahead == '\n') SKIP(119) + if (lookahead == '\r') SKIP(74) + if (lookahead == '\\') ADVANCE(621); 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) + if (lookahead == '\n') ADVANCE(272); 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 == '\n') ADVANCE(272); + if (lookahead == '\r') ADVANCE(76); + if (lookahead == '!') ADVANCE(607); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(593); + if (lookahead == '&') ADVANCE(597); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(713); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(522); + if (lookahead == '=') ADVANCE(633); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(617); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(6); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(611); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'a') ADVANCE(361); + if (lookahead == 'f') ADVANCE(341); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(366); + if (lookahead == 't') ADVANCE(367); + if (lookahead == 'w') ADVANCE(355); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(541); if (lookahead == '\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); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 78: - if (lookahead == '"') ADVANCE(79); + if (lookahead == '\n') ADVANCE(273); END_STATE(); case 79: - if (lookahead == '"') ADVANCE(447); + if (lookahead == '\n') ADVANCE(273); + if (lookahead == '\r') ADVANCE(78); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(534); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(631); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(8); + if (lookahead == '^') ADVANCE(610); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(317); + if (lookahead == 'c') ADVANCE(305); + if (lookahead == 'e') ADVANCE(321); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 'r') ADVANCE(314); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(79) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 80: - if (lookahead == '&') ADVANCE(388); + if (lookahead == '\n') ADVANCE(274); END_STATE(); case 81: - if (lookahead == '\'') ADVANCE(82); + if (lookahead == '\n') ADVANCE(274); + if (lookahead == '\r') ADVANCE(80); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(741); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(67); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(317); + if (lookahead == 'c') ADVANCE(305); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'e') ADVANCE(321); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 'r') ADVANCE(314); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(82) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 82: - if (lookahead == '\'') ADVANCE(446); + if (lookahead == '\n') ADVANCE(274); + if (lookahead == '\r') ADVANCE(80); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(67); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(317); + if (lookahead == 'c') ADVANCE(305); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'e') ADVANCE(321); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 'r') ADVANCE(314); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(82) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 83: - if (lookahead == '.') ADVANCE(138); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(83); + if (lookahead == '\n') ADVANCE(275); END_STATE(); case 84: - if (lookahead == '/') ADVANCE(441); + if (lookahead == '\n') ADVANCE(275); + if (lookahead == '\r') ADVANCE(83); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(84) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 85: - if (lookahead == '0') ADVANCE(365); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(366); + if (lookahead == '\n') ADVANCE(276); END_STATE(); case 86: - if (lookahead == ':') ADVANCE(370); + if (lookahead == '\n') ADVANCE(276); + if (lookahead == '\r') ADVANCE(85); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(741); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(69); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'e') ADVANCE(327); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(87) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 87: - if (lookahead == '<') ADVANCE(405); - if (lookahead == '>') ADVANCE(95); - if (lookahead == '~') ADVANCE(407); + if (lookahead == '\n') ADVANCE(276); + if (lookahead == '\r') ADVANCE(85); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(69); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'e') ADVANCE(327); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(87) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 88: - if (lookahead == '<') ADVANCE(405); - if (lookahead == '~') ADVANCE(407); + if (lookahead == '\n') ADVANCE(277); END_STATE(); case 89: - if (lookahead == '=') ADVANCE(391); + if (lookahead == '\n') ADVANCE(277); + if (lookahead == '\r') ADVANCE(88); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(741); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(90) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 90: - if (lookahead == '>') ADVANCE(369); + if (lookahead == '\n') ADVANCE(277); + if (lookahead == '\r') ADVANCE(88); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(71); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(90) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 91: - if (lookahead == '>') ADVANCE(410); + if (lookahead == '\n') ADVANCE(278); END_STATE(); case 92: - if (lookahead == '>') ADVANCE(410); - if (lookahead == '~') ADVANCE(134); + if (lookahead == '\n') ADVANCE(278); + if (lookahead == '\r') ADVANCE(91); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(534); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(631); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(610); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(92) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 93: - if (lookahead == '>') ADVANCE(412); + if (lookahead == '\n') ADVANCE(279); END_STATE(); case 94: - if (lookahead == '>') ADVANCE(406); + if (lookahead == '\n') ADVANCE(279); + if (lookahead == '\r') ADVANCE(93); + if (lookahead == '!') ADVANCE(607); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(593); + if (lookahead == '&') ADVANCE(597); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(713); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(522); + if (lookahead == '=') ADVANCE(633); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(617); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == '^') ADVANCE(611); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'a') ADVANCE(354); + if (lookahead == 'c') ADVANCE(342); + if (lookahead == 'e') ADVANCE(360); + if (lookahead == 'f') ADVANCE(341); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(366); + if (lookahead == 'r') ADVANCE(351); + if (lookahead == 't') ADVANCE(367); + if (lookahead == 'w') ADVANCE(355); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(541); + if (lookahead == '\t' || + lookahead == ' ') SKIP(94) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 95: - if (lookahead == '>') ADVANCE(440); + if (lookahead == '\n') ADVANCE(280); END_STATE(); case 96: - if (lookahead == '>') ADVANCE(555); + if (lookahead == '\n') ADVANCE(280); + if (lookahead == '\r') ADVANCE(95); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(534); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(631); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(16); + if (lookahead == '^') ADVANCE(610); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(96) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 97: - if (lookahead == '\\') ADVANCE(558); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(557); + if (lookahead == '\n') ADVANCE(281); END_STATE(); case 98: - if (lookahead == '^') ADVANCE(377); + if (lookahead == '\n') ADVANCE(281); + if (lookahead == '\r') ADVANCE(97); + if (lookahead == '!') ADVANCE(607); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(593); + if (lookahead == '&') ADVANCE(597); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(713); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(522); + if (lookahead == '=') ADVANCE(633); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(617); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(18); + if (lookahead == '^') ADVANCE(611); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'a') ADVANCE(361); + if (lookahead == 'e') ADVANCE(364); + if (lookahead == 'f') ADVANCE(341); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(366); + if (lookahead == 't') ADVANCE(367); + if (lookahead == 'w') ADVANCE(355); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(541); + if (lookahead == '\t' || + lookahead == ' ') SKIP(98) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 99: - if (lookahead == '^') ADVANCE(98); + if (lookahead == '\n') ADVANCE(282); END_STATE(); case 100: - if (lookahead == 'a') ADVANCE(124); + if (lookahead == '\n') ADVANCE(282); + if (lookahead == '\r') ADVANCE(99); + if (lookahead == '!') ADVANCE(607); + if (lookahead == '"') ADVANCE(509); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(597); + if (lookahead == '\'') ADVANCE(511); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(713); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '0') ADVANCE(471); + if (lookahead == ':') ADVANCE(177); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(633); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '@') ADVANCE(617); + if (lookahead == '\\') ADVANCE(20); + if (lookahead == '^') ADVANCE(611); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'a') ADVANCE(354); + if (lookahead == 'c') ADVANCE(342); + if (lookahead == 'd') ADVANCE(365); + if (lookahead == 'e') ADVANCE(360); + if (lookahead == 'f') ADVANCE(341); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(366); + if (lookahead == 'r') ADVANCE(351); + if (lookahead == 't') ADVANCE(367); + if (lookahead == 'w') ADVANCE(355); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(188); + if (lookahead == '\t' || + lookahead == ' ') SKIP(100) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(472); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 101: - if (lookahead == 'c') ADVANCE(127); + if (lookahead == '\n') ADVANCE(283); END_STATE(); case 102: - if (lookahead == 'c') ADVANCE(111); + if (lookahead == '\n') ADVANCE(283); + if (lookahead == '\r') ADVANCE(101); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(178); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(22); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'c') ADVANCE(199); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(103) END_STATE(); case 103: - if (lookahead == 'd') ADVANCE(511); + if (lookahead == '\n') ADVANCE(283); + if (lookahead == '\r') ADVANCE(101); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(22); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'c') ADVANCE(199); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(103) END_STATE(); case 104: - if (lookahead == 'd') ADVANCE(544); + if (lookahead == '\n') ADVANCE(284); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(540); + if (lookahead == '\n') ADVANCE(284); + if (lookahead == '\r') ADVANCE(104); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(24); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'c') ADVANCE(199); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(105) END_STATE(); case 106: - if (lookahead == 'e') ADVANCE(550); + if (lookahead == '\n') ADVANCE(285); END_STATE(); case 107: - if (lookahead == 'e') ADVANCE(116); + if (lookahead == '\n') ADVANCE(285); + if (lookahead == '\r') ADVANCE(106); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'c') ADVANCE(557); + if (lookahead == 'd') ADVANCE(575); + if (lookahead == 'e') ADVANCE(570); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'r') ADVANCE(566); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(108) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 108: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == '\n') ADVANCE(285); + if (lookahead == '\r') ADVANCE(106); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'c') ADVANCE(199); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(108) END_STATE(); case 109: - if (lookahead == 'e') ADVANCE(122); + if (lookahead == '\n') ADVANCE(286); END_STATE(); case 110: - if (lookahead == 'f') ADVANCE(126); - if (lookahead == 'n') ADVANCE(103); + if (lookahead == '\n') ADVANCE(286); + if (lookahead == '\r') ADVANCE(109); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(73); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'c') ADVANCE(557); + if (lookahead == 'd') ADVANCE(575); + if (lookahead == 'e') ADVANCE(570); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'r') ADVANCE(566); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(111) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 111: - if (lookahead == 'h') ADVANCE(532); + if (lookahead == '\n') ADVANCE(286); + if (lookahead == '\r') ADVANCE(109); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(73); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'c') ADVANCE(199); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(111) END_STATE(); case 112: - if (lookahead == 'h') ADVANCE(107); + if (lookahead == '\n') ADVANCE(287); END_STATE(); case 113: - if (lookahead == 'l') ADVANCE(123); - if (lookahead == 'n') ADVANCE(104); + if (lookahead == '\n') ADVANCE(287); + if (lookahead == '\r') ADVANCE(112); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(28); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'c') ADVANCE(557); + if (lookahead == 'e') ADVANCE(570); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'r') ADVANCE(566); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(114) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 114: - if (lookahead == 'n') ADVANCE(103); + if (lookahead == '\n') ADVANCE(287); + if (lookahead == '\r') ADVANCE(112); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(28); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'c') ADVANCE(199); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(114) END_STATE(); case 115: - if (lookahead == 'n') ADVANCE(515); + if (lookahead == '\n') ADVANCE(288); END_STATE(); case 116: - if (lookahead == 'n') ADVANCE(502); + if (lookahead == '\n') ADVANCE(288); + if (lookahead == '\r') ADVANCE(115); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(116) END_STATE(); case 117: - if (lookahead == 'n') ADVANCE(104); + if (lookahead == '\n') ADVANCE(289); END_STATE(); case 118: - if (lookahead == 'o') ADVANCE(536); + if (lookahead == '\n') ADVANCE(289); + if (lookahead == '\r') ADVANCE(117); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(75); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(567); + if (lookahead == 'c') ADVANCE(557); + if (lookahead == 'e') ADVANCE(570); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'r') ADVANCE(566); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(119) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 119: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == '\n') ADVANCE(289); + if (lookahead == '\r') ADVANCE(117); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(75); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'c') ADVANCE(199); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(119) END_STATE(); case 120: - if (lookahead == 'r') ADVANCE(507); + if (lookahead == '\n') ADVANCE(290); END_STATE(); case 121: - if (lookahead == 'r') ADVANCE(528); + if (lookahead == '\n') ADVANCE(290); + if (lookahead == '\r') ADVANCE(120); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(32); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'd') ADVANCE(575); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(122) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 122: - if (lookahead == 's') ADVANCE(101); + if (lookahead == '\n') ADVANCE(290); + if (lookahead == '\r') ADVANCE(120); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(32); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(122) END_STATE(); case 123: - if (lookahead == 's') ADVANCE(105); + if (lookahead == '\n') ADVANCE(291); END_STATE(); case 124: - if (lookahead == 't') ADVANCE(102); + if (lookahead == '\n') ADVANCE(291); + if (lookahead == '\r') ADVANCE(123); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(34); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(124) END_STATE(); case 125: - if (lookahead == 't') ADVANCE(499); + if (lookahead == '\n') ADVANCE(292); END_STATE(); case 126: - if (lookahead == 't') ADVANCE(108); + if (lookahead == '\n') ADVANCE(292); + if (lookahead == '\r') ADVANCE(125); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'd') ADVANCE(575); + if (lookahead == 'e') ADVANCE(574); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(127) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 127: - if (lookahead == 'u') ADVANCE(106); + if (lookahead == '\n') ADVANCE(292); + if (lookahead == '\r') ADVANCE(125); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(36); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'e') ADVANCE(216); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(127) END_STATE(); case 128: - if (lookahead == '{') ADVANCE(148); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(455); + if (lookahead == '\n') ADVANCE(293); END_STATE(); case 129: - if (lookahead == '{') ADVANCE(148); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(128); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(178); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(527); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130) END_STATE(); case 130: - if (lookahead == '}') ADVANCE(436); + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(128); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '(') ADVANCE(300); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(527); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(130) END_STATE(); case 131: - if (lookahead == '}') ADVANCE(437); + if (lookahead == '\n') ADVANCE(294); END_STATE(); case 132: - if (lookahead == '}') ADVANCE(453); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + if (lookahead == '\n') ADVANCE(294); + if (lookahead == '\r') ADVANCE(131); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(40); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(133) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 133: - if (lookahead == '~') ADVANCE(134); + if (lookahead == '\n') ADVANCE(294); + if (lookahead == '\r') ADVANCE(131); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(40); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(133) END_STATE(); case 134: - if (lookahead == '~') ADVANCE(435); + if (lookahead == '\n') ADVANCE(295); END_STATE(); case 135: - if (lookahead == '+' || - lookahead == '-') ADVANCE(85); - if (lookahead == '0') ADVANCE(365); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(366); + if (lookahead == '\n') ADVANCE(295); + if (lookahead == '\r') ADVANCE(134); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(527); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'd') ADVANCE(575); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(136) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 136: - if (lookahead == '0' || - lookahead == '1') ADVANCE(356); + if (lookahead == '\n') ADVANCE(295); + if (lookahead == '\r') ADVANCE(134); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(527); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(136) END_STATE(); case 137: - if (lookahead == '0' || - lookahead == '1') ADVANCE(362); + if (lookahead == '\n') ADVANCE(296); END_STATE(); case 138: + if (lookahead == '\n') ADVANCE(296); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'e') ADVANCE(574); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(138); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(353); + lookahead == ' ') SKIP(139) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 139: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(357); + if (lookahead == '\n') ADVANCE(296); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(44); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'e') ADVANCE(216); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(139) END_STATE(); case 140: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(363); + if (lookahead == '\n') ADVANCE(297); END_STATE(); case 141: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(355); + if (lookahead == '\n') ADVANCE(297); + if (lookahead == '\r') ADVANCE(140); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(527); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(142) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 142: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(361); + if (lookahead == '\n') ADVANCE(297); + if (lookahead == '\r') ADVANCE(140); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(527); + if (lookahead == '\\') ADVANCE(46); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(142) END_STATE(); case 143: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(366); + if (lookahead == '\n') ADVANCE(298); END_STATE(); case 144: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); + if (lookahead == '\n') ADVANCE(298); + if (lookahead == '\r') ADVANCE(143); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(509); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(174); + if (lookahead == '&') ADVANCE(151); + if (lookahead == '\'') ADVANCE(511); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(154); + if (lookahead == '+') ADVANCE(156); + if (lookahead == '-') ADVANCE(158); + if (lookahead == '.') ADVANCE(161); + if (lookahead == '/') ADVANCE(164); + if (lookahead == '<') ADVANCE(242); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(168); + if (lookahead == '@') ADVANCE(166); + if (lookahead == '\\') ADVANCE(55); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(173); + if (lookahead == '{') ADVANCE(230); + if (lookahead == '|') ADVANCE(172); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(192); + if (lookahead == '\t' || + lookahead == ' ') SKIP(144) + if (sym_keyword_character_set_3(lookahead)) ADVANCE(176); END_STATE(); case 145: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(358); + if (lookahead == '!') ADVANCE(500); + if (lookahead == '%') ADVANCE(505); + if (lookahead == '&') ADVANCE(489); + if (lookahead == '*') ADVANCE(490); + if (lookahead == '+') ADVANCE(492); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '.') ADVANCE(496); + if (lookahead == '/') ADVANCE(497); + if (lookahead == ':') ADVANCE(628); + if (lookahead == '<') ADVANCE(508); + if (lookahead == '=') ADVANCE(501); + if (lookahead == '>') ADVANCE(499); + if (lookahead == '@') ADVANCE(487); + if (lookahead == '\\') ADVANCE(193); + if (lookahead == '^') ADVANCE(504); + if (lookahead == '{') ADVANCE(229); + if (lookahead == '|') ADVANCE(503); + if (lookahead == '~') ADVANCE(183); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(586); + if (sym_keyword_character_set_3(lookahead)) ADVANCE(507); END_STATE(); case 146: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(364); + if (lookahead == '!') ADVANCE(500); + if (lookahead == '%') ADVANCE(505); + if (lookahead == '&') ADVANCE(489); + if (lookahead == '*') ADVANCE(490); + if (lookahead == '+') ADVANCE(492); + if (lookahead == '-') ADVANCE(494); + if (lookahead == '.') ADVANCE(496); + if (lookahead == '/') ADVANCE(497); + if (lookahead == ':') ADVANCE(628); + if (lookahead == '<') ADVANCE(508); + if (lookahead == '=') ADVANCE(501); + if (lookahead == '>') ADVANCE(499); + if (lookahead == '@') ADVANCE(487); + if (lookahead == '\\') ADVANCE(193); + if (lookahead == '^') ADVANCE(504); + if (lookahead == '{') ADVANCE(229); + if (lookahead == '|') ADVANCE(503); + if (lookahead == '~') ADVANCE(183); + if (sym_keyword_character_set_3(lookahead)) ADVANCE(507); END_STATE(); case 147: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(453); + if (lookahead == '"') ADVANCE(148); END_STATE(); case 148: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + if (lookahead == '"') ADVANCE(514); END_STATE(); case 149: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(147); + if (lookahead == '&') ADVANCE(166); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 150: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); + if (lookahead == '&') ADVANCE(643); 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); + if (lookahead == '&') ADVANCE(149); + if (lookahead == ':') ADVANCE(243); 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); + if (lookahead == '\'') ADVANCE(153); 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) + if (lookahead == '\'') ADVANCE(513); 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) + if (lookahead == '*') ADVANCE(166); + if (lookahead == ':') ADVANCE(243); 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); + if (lookahead == '+') ADVANCE(166); + if (lookahead == ':') ADVANCE(243); 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) + if (lookahead == '+') ADVANCE(155); + if (lookahead == ':') ADVANCE(243); 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); + if (lookahead == '-') ADVANCE(166); + if (lookahead == ':') ADVANCE(243); 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) + if (lookahead == '-') ADVANCE(157); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(166); 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); + if (lookahead == '.') ADVANCE(166); + if (lookahead == '/') ADVANCE(163); + if (lookahead == ':') ADVANCE(243); 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 == '.') ADVANCE(244); if (lookahead == '\t' || + lookahead == '\n' || 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); + lookahead == ' ') ADVANCE(160); END_STATE(); case 161: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == '.') ADVANCE(159); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(162); - if (lookahead == '\\') ADVANCE(2); + if (lookahead == '/') ADVANCE(487); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(163); + if (lookahead == '/') ADVANCE(166); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(164); - if (lookahead == '\\') ADVANCE(30); + if (lookahead == '/') ADVANCE(166); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(165); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '0') ADVANCE(477); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(166); - if (lookahead == '\\') ADVANCE(4); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(167); - if (lookahead == '\\') ADVANCE(37); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(166); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '\\') ADVANCE(5); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(166); + if (lookahead == '>') ADVANCE(590); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '\\') ADVANCE(6); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(167); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(170); - if (lookahead == '\\') ADVANCE(7); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(167); + if (lookahead == '~') ADVANCE(166); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(171); - if (lookahead == '\\') ADVANCE(8); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(166); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(172); - if (lookahead == '\\') ADVANCE(9); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(166); + if (lookahead == '|') ADVANCE(175); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(173); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '^') ADVANCE(196); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(174); - if (lookahead == '\\') ADVANCE(11); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '{') ADVANCE(230); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(175); - if (lookahead == '\\') ADVANCE(12); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '|') ADVANCE(166); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(176); - if (lookahead == '\\') ADVANCE(13); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '!' || + lookahead == '?') ADVANCE(166); + if (sym_keyword_character_set_4(lookahead)) ADVANCE(176); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(177); - if (lookahead == '\\') ADVANCE(38); + if (lookahead == ':') ADVANCE(627); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(178); - if (lookahead == '\\') ADVANCE(14); + if (lookahead == ':') ADVANCE(627); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(586); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(179); - if (lookahead == '\\') ADVANCE(15); + if (lookahead == '<') ADVANCE(666); + if (lookahead == '~') ADVANCE(670); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(180); - if (lookahead == '\\') ADVANCE(39); + if (lookahead == '=') ADVANCE(653); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(181); - if (lookahead == '\\') ADVANCE(16); + if (lookahead == '>') ADVANCE(487); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(182); - if (lookahead == '\\') ADVANCE(17); + if (lookahead == '>') ADVANCE(166); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(183); - if (lookahead == '\\') ADVANCE(18); + if (lookahead == '>') ADVANCE(502); + if (lookahead == '~') ADVANCE(232); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(184); - if (lookahead == '\\') ADVANCE(19); + if (lookahead == '>') ADVANCE(681); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(185); - if (lookahead == '\\') ADVANCE(20); + if (lookahead == '>') ADVANCE(669); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(186); - if (lookahead == '\\') ADVANCE(21); + if (lookahead == '>') ADVANCE(710); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(187); - if (lookahead == '\\') ADVANCE(22); + if (lookahead == '>') ADVANCE(677); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(188); - if (lookahead == '\\') ADVANCE(23); + if (lookahead == '>') ADVANCE(677); + if (lookahead == '~') ADVANCE(235); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(189); - if (lookahead == '\\') ADVANCE(36); + if (lookahead == '>') ADVANCE(680); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '>') ADVANCE(668); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '>') ADVANCE(589); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == '>') ADVANCE(171); + if (lookahead == '~') ADVANCE(233); END_STATE(); case 193: - ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '\\') ADVANCE(487); 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); + if (lookahead == '\\') ADVANCE(480); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(479); 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); + if (lookahead == '^') ADVANCE(487); 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); + if (lookahead == '^') ADVANCE(166); 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); + if (lookahead == '^') ADVANCE(686); 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); + if (lookahead == '^') ADVANCE(197); 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); + if (lookahead == 'a') ADVANCE(223); 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); + if (lookahead == 'c') ADVANCE(226); 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); + if (lookahead == 'c') ADVANCE(210); 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); + if (lookahead == 'd') ADVANCE(646); 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); + if (lookahead == 'd') ADVANCE(731); 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); + if (lookahead == 'e') ADVANCE(727); 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); + if (lookahead == 'e') ADVANCE(737); 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); + if (lookahead == 'e') ADVANCE(215); 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); + if (lookahead == 'e') ADVANCE(220); 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); + if (lookahead == 'e') ADVANCE(221); 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); + if (lookahead == 'f') ADVANCE(225); + if (lookahead == 'n') ADVANCE(202); 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); + if (lookahead == 'h') ADVANCE(719); 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); + if (lookahead == 'h') ADVANCE(206); 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); + if (lookahead == 'l') ADVANCE(222); + if (lookahead == 'n') ADVANCE(203); 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); + if (lookahead == 'n') ADVANCE(202); 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); + if (lookahead == 'n') ADVANCE(682); 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); + if (lookahead == 'n') ADVANCE(623); 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); + if (lookahead == 'n') ADVANCE(203); 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); + if (lookahead == 'o') ADVANCE(723); 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); + if (lookahead == 'o') ADVANCE(224); 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); + if (lookahead == 'r') ADVANCE(638); 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); + if (lookahead == 'r') ADVANCE(715); 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); + if (lookahead == 's') ADVANCE(204); 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); + if (lookahead == 't') ADVANCE(201); 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); + if (lookahead == 't') ADVANCE(614); 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); + if (lookahead == 't') ADVANCE(207); 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); + if (lookahead == 'u') ADVANCE(205); 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); + if (lookahead == '{') ADVANCE(254); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(539); 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); + if (lookahead == '{') ADVANCE(254); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(256); 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); + if (lookahead == '}') ADVANCE(487); 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); + if (lookahead == '}') ADVANCE(166); 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); + if (lookahead == '}') ADVANCE(537); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); 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); + if (lookahead == '~') ADVANCE(487); 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); + if (lookahead == '~') ADVANCE(166); 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); + if (lookahead == '~') ADVANCE(613); 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); + if (lookahead == '~') ADVANCE(612); 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); + if (lookahead == '~') ADVANCE(235); 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); + if (lookahead == '+' || + lookahead == '-') ADVANCE(165); + if (lookahead == '0') ADVANCE(477); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); 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); + if (lookahead == '<' || + lookahead == '~') ADVANCE(487); + if (lookahead == '>') ADVANCE(181); 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); + if (lookahead == '<' || + lookahead == '~') ADVANCE(166); + if (lookahead == '>') ADVANCE(182); 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); + if (lookahead == '0' || + lookahead == '1') ADVANCE(468); 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); + if (lookahead == '0' || + lookahead == '1') ADVANCE(474); 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); + if (lookahead == '-' || + lookahead == '=' || + lookahead == '>') ADVANCE(166); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '<') ADVANCE(239); + if (lookahead == '|') ADVANCE(182); + if (lookahead == '~') ADVANCE(171); 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); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(585); 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); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(244); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); 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); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(469); 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); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(475); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); 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); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(472); 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); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(470); 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); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(476); 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); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(537); 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); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); 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); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(253); 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); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(255); 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); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(269); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(743); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(525); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(317); + if (lookahead == 'c') ADVANCE(305); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'e') ADVANCE(321); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 'r') ADVANCE(314); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(257) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_2(lookahead)) ADVANCE(176); 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); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(272); + if (lookahead == '\r') ADVANCE(76); + if (lookahead == '!') ADVANCE(607); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(593); + if (lookahead == '&') ADVANCE(597); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(713); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(145); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(522); + if (lookahead == '=') ADVANCE(633); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(617); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(6); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(611); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'a') ADVANCE(361); + if (lookahead == 'f') ADVANCE(341); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(366); + if (lookahead == 't') ADVANCE(367); + if (lookahead == 'w') ADVANCE(355); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(541); + if (lookahead == '\t' || + lookahead == ' ') SKIP(259) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); 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); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(272); + if (lookahead == '\r') ADVANCE(76); + if (lookahead == '!') ADVANCE(607); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(593); + if (lookahead == '&') ADVANCE(597); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(604); + if (lookahead == '.') ADVANCE(713); + if (lookahead == '/') ADVANCE(532); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(522); + if (lookahead == '=') ADVANCE(633); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(617); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(6); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(611); + if (lookahead == '_') ADVANCE(442); + if (lookahead == 'a') ADVANCE(361); + if (lookahead == 'f') ADVANCE(341); + if (lookahead == 'i') ADVANCE(362); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(366); + if (lookahead == 't') ADVANCE(367); + if (lookahead == 'w') ADVANCE(355); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(541); + if (lookahead == '\t' || + lookahead == ' ') SKIP(259) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); 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); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(275); + if (lookahead == '\r') ADVANCE(83); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(741); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(261) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); 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); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(275); + if (lookahead == '\r') ADVANCE(83); + if (lookahead == '!') ADVANCE(606); + if (lookahead == '"') ADVANCE(510); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '%') ADVANCE(594); + if (lookahead == '&') ADVANCE(596); + if (lookahead == '\'') ADVANCE(512); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(703); + if (lookahead == '+') ADVANCE(599); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(602); + if (lookahead == '.') ADVANCE(712); + if (lookahead == '/') ADVANCE(533); + if (lookahead == '0') ADVANCE(466); + if (lookahead == ':') ADVANCE(146); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(521); + if (lookahead == '=') ADVANCE(630); + if (lookahead == '>') ADVANCE(526); + if (lookahead == '?') ADVANCE(194); + if (lookahead == '@') ADVANCE(618); + if (lookahead == '[') ADVANCE(518); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(609); + if (lookahead == '_') ADVANCE(406); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'd') ADVANCE(328); + if (lookahead == 'f') ADVANCE(304); + if (lookahead == 'i') ADVANCE(325); + if (lookahead == 'n') ADVANCE(320); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(330); + if (lookahead == 'w') ADVANCE(318); + if (lookahead == '{') ADVANCE(516); + if (lookahead == '|') ADVANCE(530); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(540); + if (lookahead == 11823) ADVANCE(377); + if (lookahead == '\t' || + lookahead == ' ') SKIP(261) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); + if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); 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); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(284); + if (lookahead == '\r') ADVANCE(104); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(178); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(24); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'c') ADVANCE(199); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(263) 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); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(284); + if (lookahead == '\r') ADVANCE(104); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == '(') ADVANCE(300); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(24); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(209); + if (lookahead == 'c') ADVANCE(199); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'r') ADVANCE(208); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(263) 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); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(288); + if (lookahead == '\r') ADVANCE(115); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'd') ADVANCE(575); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(265) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); 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); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(288); + if (lookahead == '\r') ADVANCE(115); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(30); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(265) END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(291); + if (lookahead == '\r') ADVANCE(123); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '[') ADVANCE(742); + if (lookahead == '\\') ADVANCE(34); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(571); + if (lookahead == 'i') ADVANCE(572); + if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'w') ADVANCE(569); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(267) + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 267: - ACCEPT_TOKEN(sym_unused_identifier); + if (eof) ADVANCE(268); + if (lookahead == '\n') ADVANCE(291); + if (lookahead == '\r') ADVANCE(123); + if (lookahead == '!') ADVANCE(180); + if (lookahead == '#') ADVANCE(744); + if (lookahead == '&') ADVANCE(150); + if (lookahead == ')') ADVANCE(301); + if (lookahead == '*') ADVANCE(704); + if (lookahead == '+') ADVANCE(600); + if (lookahead == ',') ADVANCE(584); + if (lookahead == '-') ADVANCE(603); + if (lookahead == '.') ADVANCE(714); + if (lookahead == '/') ADVANCE(535); + if (lookahead == ':') ADVANCE(177); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(523); + if (lookahead == '=') ADVANCE(632); + if (lookahead == '>') ADVANCE(528); + if (lookahead == '\\') ADVANCE(34); + if (lookahead == ']') ADVANCE(519); + if (lookahead == '^') ADVANCE(198); + if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'i') ADVANCE(214); + if (lookahead == 'o') ADVANCE(219); + if (lookahead == 'w') ADVANCE(211); + if (lookahead == '{') ADVANCE(515); + if (lookahead == '|') ADVANCE(531); + if (lookahead == '}') ADVANCE(517); + if (lookahead == '~') ADVANCE(187); + if (lookahead == '\t' || + lookahead == ' ') SKIP(267) 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); + ACCEPT_TOKEN(ts_builtin_sym_end); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(269); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '\\') ADVANCE(4); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(270); + if (lookahead == '\r') ADVANCE(49); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(271); + if (lookahead == '\r') ADVANCE(61); + if (lookahead == '\\') ADVANCE(58); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(272); + if (lookahead == '\r') ADVANCE(76); + if (lookahead == '\\') ADVANCE(6); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(273); + if (lookahead == '\r') ADVANCE(78); + if (lookahead == '\\') ADVANCE(8); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(274); + if (lookahead == '\r') ADVANCE(80); + if (lookahead == '\\') ADVANCE(67); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(275); + if (lookahead == '\r') ADVANCE(83); + if (lookahead == '\\') ADVANCE(10); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(276); + if (lookahead == '\r') ADVANCE(85); + if (lookahead == '\\') ADVANCE(69); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(277); + if (lookahead == '\r') ADVANCE(88); + if (lookahead == '\\') ADVANCE(71); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(278); + if (lookahead == '\r') ADVANCE(91); + if (lookahead == '\\') ADVANCE(12); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(279); + if (lookahead == '\r') ADVANCE(93); + if (lookahead == '\\') ADVANCE(14); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(280); + if (lookahead == '\r') ADVANCE(95); + if (lookahead == '\\') ADVANCE(16); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(281); + if (lookahead == '\r') ADVANCE(97); + if (lookahead == '\\') ADVANCE(18); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(282); + if (lookahead == '\r') ADVANCE(99); + if (lookahead == '\\') ADVANCE(20); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(283); + if (lookahead == '\r') ADVANCE(101); + if (lookahead == '\\') ADVANCE(22); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(284); + if (lookahead == '\r') ADVANCE(104); + if (lookahead == '\\') ADVANCE(24); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(285); + if (lookahead == '\r') ADVANCE(106); + if (lookahead == '\\') ADVANCE(26); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(286); + if (lookahead == '\r') ADVANCE(109); + if (lookahead == '\\') ADVANCE(73); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(287); + if (lookahead == '\r') ADVANCE(112); + if (lookahead == '\\') ADVANCE(28); 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); + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(288); + if (lookahead == '\r') ADVANCE(115); if (lookahead == '\\') ADVANCE(30); END_STATE(); + case 289: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(289); + if (lookahead == '\r') ADVANCE(117); + if (lookahead == '\\') ADVANCE(75); + END_STATE(); + case 290: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(290); + if (lookahead == '\r') ADVANCE(120); + if (lookahead == '\\') ADVANCE(32); + END_STATE(); + case 291: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(291); + if (lookahead == '\r') ADVANCE(123); + if (lookahead == '\\') ADVANCE(34); + END_STATE(); + case 292: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(292); + if (lookahead == '\r') ADVANCE(125); + if (lookahead == '\\') ADVANCE(36); + END_STATE(); + case 293: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\r') ADVANCE(128); + if (lookahead == '\\') ADVANCE(38); + END_STATE(); + case 294: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(294); + if (lookahead == '\r') ADVANCE(131); + if (lookahead == '\\') ADVANCE(40); + END_STATE(); + case 295: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(295); + if (lookahead == '\r') ADVANCE(134); + if (lookahead == '\\') ADVANCE(42); + END_STATE(); + case 296: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(296); + if (lookahead == '\r') ADVANCE(137); + if (lookahead == '\\') ADVANCE(44); + END_STATE(); + case 297: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(297); + if (lookahead == '\r') ADVANCE(140); + if (lookahead == '\\') ADVANCE(46); + END_STATE(); + case 298: + ACCEPT_TOKEN(aux_sym__terminator_token1); + if (lookahead == '\n') ADVANCE(298); + if (lookahead == '\r') ADVANCE(143); + if (lookahead == '\\') ADVANCE(55); + END_STATE(); + case 299: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 302: + ACCEPT_TOKEN(aux_sym_identifier_token1); + END_STATE(); + case 303: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 304: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'a') ADVANCE(323); + if (lookahead == 'n') ADVANCE(735); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(340); + END_STATE(); + case 305: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'a') ADVANCE(335); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(340); + END_STATE(); + case 306: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'c') ADVANCE(319); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 307: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'c') ADVANCE(339); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 308: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'd') ADVANCE(647); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 309: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'd') ADVANCE(732); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 310: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'e') ADVANCE(728); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 311: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'e') ADVANCE(481); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 312: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'e') ADVANCE(483); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 313: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'e') ADVANCE(738); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 314: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'e') ADVANCE(332); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 315: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'e') ADVANCE(326); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 316: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'e') ADVANCE(331); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 317: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'f') ADVANCE(337); + if (lookahead == 'n') ADVANCE(308); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 318: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'h') ADVANCE(315); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 319: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'h') ADVANCE(720); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 320: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'i') ADVANCE(322); + if (lookahead == 'o') ADVANCE(336); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 321: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'l') ADVANCE(333); + if (lookahead == 'n') ADVANCE(309); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 322: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'l') ADVANCE(485); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 323: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'l') ADVANCE(334); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 324: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'n') ADVANCE(308); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 325: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'n') ADVANCE(683); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 326: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'n') ADVANCE(624); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 327: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'n') ADVANCE(309); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 328: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'o') ADVANCE(724); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 329: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'r') ADVANCE(639); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 330: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'r') ADVANCE(338); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 331: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'r') ADVANCE(716); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 332: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 's') ADVANCE(307); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 333: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 's') ADVANCE(310); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 334: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 's') ADVANCE(312); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 335: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 't') ADVANCE(306); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 336: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 't') ADVANCE(615); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 337: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 't') ADVANCE(316); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 338: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'u') ADVANCE(311); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 339: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'u') ADVANCE(313); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 340: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 341: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'a') ADVANCE(358); + if (lookahead == 'n') ADVANCE(736); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(377); + END_STATE(); + case 342: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'a') ADVANCE(373); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(377); + END_STATE(); + case 343: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'c') ADVANCE(356); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 344: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'c') ADVANCE(376); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 345: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'd') ADVANCE(648); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 346: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'd') ADVANCE(733); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 347: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(482); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 348: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(484); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 349: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(729); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 350: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(739); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 351: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(369); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 352: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(363); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 353: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'e') ADVANCE(368); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 354: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'f') ADVANCE(374); + if (lookahead == 'n') ADVANCE(345); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 355: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'h') ADVANCE(352); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 356: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'h') ADVANCE(721); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 357: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'o') ADVANCE(372); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 358: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'l') ADVANCE(370); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 359: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'l') ADVANCE(486); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 360: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'l') ADVANCE(371); + if (lookahead == 'n') ADVANCE(346); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 361: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'n') ADVANCE(345); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 362: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'n') ADVANCE(684); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 363: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'n') ADVANCE(625); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 364: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'n') ADVANCE(346); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 365: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'o') ADVANCE(725); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 366: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'r') ADVANCE(640); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 367: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'r') ADVANCE(375); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 368: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'r') ADVANCE(717); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 369: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 's') ADVANCE(344); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 370: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 's') ADVANCE(348); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 371: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 's') ADVANCE(349); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 372: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 't') ADVANCE(616); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 373: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 't') ADVANCE(343); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 374: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 't') ADVANCE(353); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 375: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'u') ADVANCE(347); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 376: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == 'u') ADVANCE(350); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 377: + ACCEPT_TOKEN(aux_sym_identifier_token1); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 378: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 379: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 380: + ACCEPT_TOKEN(sym_unused_identifier); + END_STATE(); + case 381: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 382: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'A') ADVANCE(395); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(417); + END_STATE(); + case 383: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'A') ADVANCE(386); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(417); + END_STATE(); + case 384: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'A') ADVANCE(387); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(417); + END_STATE(); + case 385: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'C') ADVANCE(382); + if (lookahead == 'D') ADVANCE(392); + if (lookahead == 'E') ADVANCE(397); + if (lookahead == 'M') ADVANCE(398); + if (lookahead == 'S') ADVANCE(402); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 386: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'C') ADVANCE(393); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 387: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'C') ADVANCE(390); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 388: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'D') ADVANCE(404); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 389: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'E') ADVANCE(415); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 390: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'E') ADVANCE(416); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 391: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'E') ADVANCE(401); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 392: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'I') ADVANCE(399); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 393: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'K') ADVANCE(403); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 394: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'L') ADVANCE(391); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 395: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'L') ADVANCE(394); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 396: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'L') ADVANCE(389); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 397: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'N') ADVANCE(405); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 398: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'O') ADVANCE(388); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 399: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'R') ADVANCE(412); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 400: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'R') ADVANCE(384); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 401: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'R') ADVANCE(414); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 402: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'T') ADVANCE(383); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 403: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'T') ADVANCE(400); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 404: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'U') ADVANCE(396); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 405: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'V') ADVANCE(413); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 406: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(385); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 407: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(456); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 408: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(458); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 409: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(460); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 410: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(454); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 411: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(462); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 412: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(407); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 413: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(408); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 414: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(409); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 415: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(410); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 416: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '_') ADVANCE(411); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); + END_STATE(); + case 417: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); + case 418: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'A') ADVANCE(431); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(453); + END_STATE(); + case 419: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'A') ADVANCE(422); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(453); + END_STATE(); + case 420: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'A') ADVANCE(423); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(453); + END_STATE(); + case 421: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'C') ADVANCE(418); + if (lookahead == 'D') ADVANCE(428); + if (lookahead == 'E') ADVANCE(433); + if (lookahead == 'M') ADVANCE(434); + if (lookahead == 'S') ADVANCE(438); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 422: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'C') ADVANCE(429); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 423: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'C') ADVANCE(426); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 424: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'D') ADVANCE(440); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 425: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'E') ADVANCE(451); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 426: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'E') ADVANCE(452); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 427: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'E') ADVANCE(437); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 428: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'I') ADVANCE(435); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 429: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'K') ADVANCE(439); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 430: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'L') ADVANCE(427); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 431: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'L') ADVANCE(430); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 432: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'L') ADVANCE(425); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 433: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'N') ADVANCE(441); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 434: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'O') ADVANCE(424); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 435: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'R') ADVANCE(448); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 436: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'R') ADVANCE(420); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 437: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'R') ADVANCE(450); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 438: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'T') ADVANCE(419); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 439: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'T') ADVANCE(436); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 440: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'U') ADVANCE(432); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 441: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == 'V') ADVANCE(449); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 442: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(421); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 443: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(457); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 444: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(459); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(461); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 446: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(455); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(463); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 448: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(443); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 449: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(444); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 450: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(445); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 451: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(446); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 452: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '_') ADVANCE(447); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); + END_STATE(); + case 453: + ACCEPT_TOKEN(sym_unused_identifier); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); + END_STATE(); + case 454: + ACCEPT_TOKEN(anon_sym___MODULE__); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); + END_STATE(); case 455: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(453); + ACCEPT_TOKEN(anon_sym___MODULE__); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); END_STATE(); case 456: - ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '>') ADVANCE(410); - if (lookahead == '~') ADVANCE(134); + ACCEPT_TOKEN(anon_sym___DIR__); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); END_STATE(); case 457: - ACCEPT_TOKEN(aux_sym_sigil_token1); + ACCEPT_TOKEN(anon_sym___DIR__); + if (lookahead == '!' || + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); END_STATE(); case 458: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == '@') ADVANCE(368); - if (lookahead == 'a') ADVANCE(213); - if (lookahead == 'n') ADVANCE(548); + ACCEPT_TOKEN(anon_sym___ENV__); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(228); + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); END_STATE(); case 459: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == '@') ADVANCE(368); - if (lookahead == 'a') ADVANCE(223); + ACCEPT_TOKEN(anon_sym___ENV__); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(228); + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); END_STATE(); case 460: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == '@') ADVANCE(368); - if (lookahead == 'e') ADVANCE(220); + ACCEPT_TOKEN(anon_sym___CALLER__); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); END_STATE(); case 461: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == '@') ADVANCE(368); - if (lookahead == 'f') ADVANCE(225); - if (lookahead == 'n') ADVANCE(198); + ACCEPT_TOKEN(anon_sym___CALLER__); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); END_STATE(); case 462: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == '@') ADVANCE(368); - if (lookahead == 'h') ADVANCE(205); + ACCEPT_TOKEN(anon_sym___STACKTRACE__); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + lookahead == '?') ADVANCE(381); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); END_STATE(); case 463: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == '@') ADVANCE(368); - if (lookahead == 'i') ADVANCE(212); - if (lookahead == 'o') ADVANCE(224); + ACCEPT_TOKEN(anon_sym___STACKTRACE__); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + lookahead == '?') ADVANCE(380); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); END_STATE(); case 464: - ACCEPT_TOKEN(aux_sym_sigil_token1); - if (lookahead == '@') ADVANCE(368); - if (lookahead == 'l') ADVANCE(221); - if (lookahead == 'n') ADVANCE(199); + ACCEPT_TOKEN(sym_alias); + if (lookahead == '.') ADVANCE(244); + if (lookahead == ':') ADVANCE(243); 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); + lookahead == '?') ADVANCE(166); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(160); 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); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(464); + if (sym_keyword_character_set_5(lookahead)) ADVANCE(176); + END_STATE(); + case 465: + ACCEPT_TOKEN(sym_alias); + if (lookahead == '.') ADVANCE(244); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(160); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(465); + END_STATE(); + case 466: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(248); + if (lookahead == '_') ADVANCE(247); + if (lookahead == 'b') ADVANCE(240); + if (lookahead == 'o') ADVANCE(245); + if (lookahead == 'x') ADVANCE(251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); + END_STATE(); + case 467: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(248); + if (lookahead == '_') ADVANCE(247); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); + END_STATE(); + case 468: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(240); + if (lookahead == '0' || + lookahead == '1') ADVANCE(468); + END_STATE(); + case 469: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(245); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(469); + END_STATE(); + case 470: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(251); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(470); + END_STATE(); + case 471: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(250); + if (lookahead == 'b') ADVANCE(240); + if (lookahead == 'o') ADVANCE(245); + if (lookahead == 'x') ADVANCE(251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(472); 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); + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(472); 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); + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(248); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(237); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); 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); + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(241); + if (lookahead == '0' || + lookahead == '1') ADVANCE(474); 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); + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(246); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(475); 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); + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(476); 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); + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(249); + if (lookahead == 'b') ADVANCE(241); + if (lookahead == 'o') ADVANCE(246); + if (lookahead == 'x') ADVANCE(252); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); 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); + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); 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); + ACCEPT_TOKEN(sym_char); 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); + ACCEPT_TOKEN(sym_char); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(479); 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); + ACCEPT_TOKEN(anon_sym_true); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 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); + ACCEPT_TOKEN(anon_sym_true); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 483: - ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'h') ADVANCE(535); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 484: - ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'h') ADVANCE(479); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(anon_sym_false); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 485: - 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); + ACCEPT_TOKEN(anon_sym_nil); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 486: - ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(475); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(anon_sym_nil); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 487: - ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(518); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(sym_atom); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '&') ADVANCE(487); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '&') ADVANCE(488); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '*') ADVANCE(487); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '+') ADVANCE(487); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '+') ADVANCE(491); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '-') ADVANCE(487); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '-') ADVANCE(493); + if (lookahead == '>') ADVANCE(487); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '.') ADVANCE(487); + if (lookahead == '/') ADVANCE(162); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '.') ADVANCE(495); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '/') ADVANCE(487); END_STATE(); case 498: - ACCEPT_TOKEN(aux_sym_sigil_token3); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '=') ADVANCE(487); END_STATE(); case 499: - ACCEPT_TOKEN(anon_sym_not); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '=') ADVANCE(487); + if (lookahead == '>') ADVANCE(181); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '=') ADVANCE(498); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '=') ADVANCE(498); + if (lookahead == '~') ADVANCE(487); END_STATE(); case 502: - ACCEPT_TOKEN(anon_sym_when); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '>') ADVANCE(487); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '>') ADVANCE(487); + if (lookahead == '|') ADVANCE(506); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '^') ADVANCE(195); END_STATE(); case 505: - ACCEPT_TOKEN(anon_sym_when); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '{') ADVANCE(229); END_STATE(); case 506: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '|') ADVANCE(487); END_STATE(); case 507: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '!' || + lookahead == '?') ADVANCE(487); + if (sym_keyword_character_set_4(lookahead)) ADVANCE(507); 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); + ACCEPT_TOKEN(sym_atom); + if (lookahead == '-' || + lookahead == '=' || + lookahead == '>') ADVANCE(487); + if (lookahead == '<') ADVANCE(238); + if (lookahead == '|') ADVANCE(181); + if (lookahead == '~') ADVANCE(502); 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); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 510: - ACCEPT_TOKEN(anon_sym_or); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '"') ADVANCE(148); END_STATE(); case 511: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_SQUOTE); 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); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(153); 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); + ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE_SQUOTE); END_STATE(); case 514: - ACCEPT_TOKEN(anon_sym_and); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); case 515: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_LBRACE); 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); + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '}') ADVANCE(166); 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); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 518: - ACCEPT_TOKEN(anon_sym_in); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 519: - ACCEPT_TOKEN(anon_sym_CARET_CARET); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 520: - ACCEPT_TOKEN(anon_sym_CARET_CARET); - if (lookahead == '^') ADVANCE(377); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 521: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(620); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '<') ADVANCE(587); + if (lookahead == '=') ADVANCE(661); + if (lookahead == '>') ADVANCE(702); + if (lookahead == '|') ADVANCE(184); + if (lookahead == '~') ADVANCE(674); 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); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(619); + if (lookahead == '<') ADVANCE(588); + if (lookahead == '=') ADVANCE(660); + if (lookahead == '>') ADVANCE(701); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '~') ADVANCE(675); 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); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '-') ADVANCE(619); + if (lookahead == '<') ADVANCE(179); + if (lookahead == '=') ADVANCE(660); + if (lookahead == '>') ADVANCE(701); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '~') ADVANCE(675); 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); + ACCEPT_TOKEN(anon_sym_GT); 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); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(663); + if (lookahead == '>') ADVANCE(591); 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); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(663); + if (lookahead == '>') ADVANCE(185); 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); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(662); + if (lookahead == '>') ADVANCE(592); END_STATE(); case 528: - ACCEPT_TOKEN(anon_sym_after); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(662); + if (lookahead == '>') ADVANCE(190); 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); + ACCEPT_TOKEN(anon_sym_PIPE); 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); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(665); + if (lookahead == '|') ADVANCE(634); END_STATE(); case 531: - ACCEPT_TOKEN(anon_sym_after); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '>') ADVANCE(664); + if (lookahead == '|') ADVANCE(635); END_STATE(); case 532: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_SLASH); 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); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(689); + if (lookahead == ':') ADVANCE(243); 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); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(166); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 535: - ACCEPT_TOKEN(anon_sym_catch); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(688); END_STATE(); case 536: - ACCEPT_TOKEN(anon_sym_do); + ACCEPT_TOKEN(anon_sym_POUND_LBRACE); 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); + ACCEPT_TOKEN(sym_escape_sequence); 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); + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\n') ADVANCE(271); + if (lookahead == '\r') ADVANCE(61); + if (lookahead == '\\') ADVANCE(58); END_STATE(); case 539: - ACCEPT_TOKEN(anon_sym_do); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(537); END_STATE(); case 540: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '>') ADVANCE(676); + if (lookahead == '~') ADVANCE(234); 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); + ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == '>') ADVANCE(677); + if (lookahead == '~') ADVANCE(235); 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); + ACCEPT_TOKEN(aux_sym_sigil_token1); END_STATE(); case 543: - ACCEPT_TOKEN(anon_sym_else); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'a') ADVANCE(323); + if (lookahead == 'n') ADVANCE(735); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(340); END_STATE(); case 544: - ACCEPT_TOKEN(anon_sym_end); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'a') ADVANCE(335); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(340); END_STATE(); case 545: - ACCEPT_TOKEN(anon_sym_end); - if (lookahead == '@') ADVANCE(368); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'e') ADVANCE(332); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 546: - ACCEPT_TOKEN(anon_sym_end); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'f') ADVANCE(337); + if (lookahead == 'n') ADVANCE(308); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 547: - ACCEPT_TOKEN(anon_sym_end); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'h') ADVANCE(315); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 548: - ACCEPT_TOKEN(anon_sym_fn); - if (lookahead == '@') ADVANCE(368); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'i') ADVANCE(322); + if (lookahead == 'o') ADVANCE(336); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 549: - ACCEPT_TOKEN(anon_sym_fn); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'l') ADVANCE(333); + if (lookahead == 'n') ADVANCE(309); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 550: - ACCEPT_TOKEN(anon_sym_rescue); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'n') ADVANCE(683); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 551: - ACCEPT_TOKEN(anon_sym_rescue); - if (lookahead == '@') ADVANCE(368); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'o') ADVANCE(724); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(228); + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 552: - ACCEPT_TOKEN(anon_sym_rescue); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'r') ADVANCE(639); if (lookahead == '!' || - lookahead == '?') ADVANCE(193); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(265); + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 553: - ACCEPT_TOKEN(anon_sym_rescue); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(498); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == 'r') ADVANCE(338); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 554: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(405); - if (lookahead == '~') ADVANCE(407); + ACCEPT_TOKEN(aux_sym_sigil_token1); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 555: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(aux_sym_sigil_token2); END_STATE(); case 556: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(406); + ACCEPT_TOKEN(aux_sym_sigil_token2); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '!' || + lookahead == '?') ADVANCE(166); + if (sym_keyword_character_set_4(lookahead)) ADVANCE(176); END_STATE(); case 557: - ACCEPT_TOKEN(sym_char); + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'a') ADVANCE(580); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 558: - ACCEPT_TOKEN(sym_char); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(557); + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'c') ADVANCE(582); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 559: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'c') ADVANCE(568); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 560: - ACCEPT_TOKEN(anon_sym_LBRACK2); + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'd') ADVANCE(649); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 561: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '{') ADVANCE(452); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(562); + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'd') ADVANCE(734); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); END_STATE(); case 562: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(730); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 563: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(740); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 564: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(573); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 565: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(577); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 566: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'e') ADVANCE(578); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 567: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'f') ADVANCE(581); + if (lookahead == 'n') ADVANCE(560); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 568: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'h') ADVANCE(722); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 569: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'h') ADVANCE(564); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 570: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'l') ADVANCE(579); + if (lookahead == 'n') ADVANCE(561); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 571: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'n') ADVANCE(560); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 572: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'n') ADVANCE(685); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 573: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'n') ADVANCE(626); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 574: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'n') ADVANCE(561); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 575: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'o') ADVANCE(726); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 576: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'r') ADVANCE(641); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 577: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'r') ADVANCE(718); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 578: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 's') ADVANCE(558); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 579: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 's') ADVANCE(562); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 580: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 't') ADVANCE(559); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 581: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 't') ADVANCE(565); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 582: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (lookahead == 'u') ADVANCE(563); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 583: + ACCEPT_TOKEN(aux_sym_sigil_token3); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 584: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 585: + ACCEPT_TOKEN(sym_keyword); + END_STATE(); + case 586: + ACCEPT_TOKEN(aux_sym_quoted_keyword_token1); + END_STATE(); + case 587: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(667); + if (lookahead == '>') ADVANCE(182); + if (lookahead == '~') ADVANCE(671); + END_STATE(); + case 588: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '<') ADVANCE(666); + if (lookahead == '~') ADVANCE(670); + END_STATE(); + case 589: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 590: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(166); + END_STATE(); + case 591: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(669); + END_STATE(); + case 592: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(668); + END_STATE(); + case 593: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 594: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '{') ADVANCE(230); + END_STATE(); + case 595: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 596: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(642); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 597: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(643); + END_STATE(); + case 598: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 599: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(690); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 600: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(691); + END_STATE(); + case 601: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 602: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(692); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(711); + END_STATE(); + case 603: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(693); + END_STATE(); + case 604: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(693); + if (lookahead == '>') ADVANCE(710); + END_STATE(); + case 605: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 606: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(652); + END_STATE(); + case 607: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(653); + END_STATE(); + case 608: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 609: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '^') ADVANCE(709); + END_STATE(); + case 610: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '^') ADVANCE(708); + END_STATE(); + case 611: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(707); + END_STATE(); + case 612: + ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + END_STATE(); + case 613: + ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 614: + ACCEPT_TOKEN(anon_sym_not); + END_STATE(); + case 615: + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 616: + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 617: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 618: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 619: + ACCEPT_TOKEN(anon_sym_LT_DASH); + END_STATE(); + case 620: + ACCEPT_TOKEN(anon_sym_LT_DASH); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 621: + ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); + END_STATE(); + case 622: + ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 623: + ACCEPT_TOKEN(anon_sym_when); + END_STATE(); + case 624: + ACCEPT_TOKEN(anon_sym_when); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 625: + ACCEPT_TOKEN(anon_sym_when); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 626: + ACCEPT_TOKEN(anon_sym_when); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 627: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 628: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + if (lookahead == ':') ADVANCE(487); + END_STATE(); + case 629: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 630: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(650); + if (lookahead == '>') ADVANCE(629); + if (lookahead == '~') ADVANCE(655); + END_STATE(); + case 631: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(650); + if (lookahead == '~') ADVANCE(655); + END_STATE(); + case 632: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(651); + if (lookahead == '>') ADVANCE(629); + if (lookahead == '~') ADVANCE(654); + END_STATE(); + case 633: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(651); + if (lookahead == '~') ADVANCE(654); + END_STATE(); + case 634: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '|') ADVANCE(637); + END_STATE(); + case 635: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '|') ADVANCE(636); + END_STATE(); + case 636: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); + END_STATE(); + case 637: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 638: + ACCEPT_TOKEN(anon_sym_or); + END_STATE(); + case 639: + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 640: + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 641: + ACCEPT_TOKEN(anon_sym_or); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 642: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '&') ADVANCE(645); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 643: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '&') ADVANCE(644); + END_STATE(); + case 644: + ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); + END_STATE(); + case 645: + ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 646: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 647: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 648: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 649: + ACCEPT_TOKEN(anon_sym_and); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 650: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(657); + END_STATE(); + case 651: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(656); + END_STATE(); + case 652: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(659); + END_STATE(); + case 653: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(658); + END_STATE(); + case 654: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 655: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 656: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 657: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 658: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 659: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 660: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 661: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 662: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 663: + ACCEPT_TOKEN(anon_sym_GT_EQ); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 664: + ACCEPT_TOKEN(anon_sym_PIPE_GT); + END_STATE(); + case 665: + ACCEPT_TOKEN(anon_sym_PIPE_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 666: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 667: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 668: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + END_STATE(); + case 669: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 670: + ACCEPT_TOKEN(anon_sym_LT_LT_TILDE); + END_STATE(); + case 671: + ACCEPT_TOKEN(anon_sym_LT_LT_TILDE); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 672: + ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); + END_STATE(); + case 673: + ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 674: + ACCEPT_TOKEN(anon_sym_LT_TILDE); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(679); + END_STATE(); + case 675: + ACCEPT_TOKEN(anon_sym_LT_TILDE); + if (lookahead == '>') ADVANCE(678); + END_STATE(); + case 676: + ACCEPT_TOKEN(anon_sym_TILDE_GT); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(673); + END_STATE(); + case 677: + ACCEPT_TOKEN(anon_sym_TILDE_GT); + if (lookahead == '>') ADVANCE(672); + END_STATE(); + case 678: + ACCEPT_TOKEN(anon_sym_LT_TILDE_GT); + END_STATE(); + case 679: + ACCEPT_TOKEN(anon_sym_LT_TILDE_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 680: + ACCEPT_TOKEN(anon_sym_LT_PIPE_GT); + END_STATE(); + case 681: + ACCEPT_TOKEN(anon_sym_LT_PIPE_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 682: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 683: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 684: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 685: + ACCEPT_TOKEN(anon_sym_in); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 686: + ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); + END_STATE(); + case 687: + ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 688: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + END_STATE(); + case 689: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 690: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '+') ADVANCE(695); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 691: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '+') ADVANCE(694); + END_STATE(); + case 692: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '-') ADVANCE(697); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 693: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '-') ADVANCE(696); + END_STATE(); + case 694: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); + END_STATE(); + case 695: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 696: + ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); + END_STATE(); + case 697: + ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 698: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 699: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(379); + if (lookahead == '/') ADVANCE(163); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 700: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '.') ADVANCE(378); + END_STATE(); + case 701: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 702: + ACCEPT_TOKEN(anon_sym_LT_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 703: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(706); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 704: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(705); + END_STATE(); + case 705: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 706: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 707: + ACCEPT_TOKEN(anon_sym_CARET_CARET); + END_STATE(); + case 708: + ACCEPT_TOKEN(anon_sym_CARET_CARET); + if (lookahead == '^') ADVANCE(166); + END_STATE(); + case 709: + ACCEPT_TOKEN(anon_sym_CARET_CARET); + if (lookahead == '^') ADVANCE(687); + END_STATE(); + case 710: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 711: + ACCEPT_TOKEN(anon_sym_DASH_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 712: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(699); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 713: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(700); + END_STATE(); + case 714: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(698); + END_STATE(); + case 715: + ACCEPT_TOKEN(anon_sym_after); + END_STATE(); + case 716: + ACCEPT_TOKEN(anon_sym_after); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 717: + ACCEPT_TOKEN(anon_sym_after); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 718: + ACCEPT_TOKEN(anon_sym_after); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 719: + ACCEPT_TOKEN(anon_sym_catch); + END_STATE(); + case 720: + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 721: + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 722: + ACCEPT_TOKEN(anon_sym_catch); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 723: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 724: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 725: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 726: + ACCEPT_TOKEN(anon_sym_do); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 727: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 728: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 729: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 730: + ACCEPT_TOKEN(anon_sym_else); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 731: + ACCEPT_TOKEN(anon_sym_end); + END_STATE(); + case 732: + ACCEPT_TOKEN(anon_sym_end); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 733: + ACCEPT_TOKEN(anon_sym_end); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 734: + ACCEPT_TOKEN(anon_sym_end); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 735: + ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 736: + ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 737: + ACCEPT_TOKEN(anon_sym_rescue); + END_STATE(); + case 738: + ACCEPT_TOKEN(anon_sym_rescue); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 739: + ACCEPT_TOKEN(anon_sym_rescue); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 740: + ACCEPT_TOKEN(anon_sym_rescue); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + END_STATE(); + case 741: + ACCEPT_TOKEN(anon_sym_LPAREN2); + END_STATE(); + case 742: + ACCEPT_TOKEN(anon_sym_LBRACK2); + END_STATE(); + case 743: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '{') ADVANCE(536); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(744); + END_STATE(); + case 744: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(562); + lookahead != '\n') ADVANCE(744); END_STATE(); default: return false; @@ -16428,5465 +17784,4894 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 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}, + [1] = {.lex_state = 258, .external_lex_state = 2}, + [2] = {.lex_state = 79, .external_lex_state = 2}, + [3] = {.lex_state = 79, .external_lex_state = 2}, + [4] = {.lex_state = 79, .external_lex_state = 2}, + [5] = {.lex_state = 79, .external_lex_state = 2}, + [6] = {.lex_state = 79, .external_lex_state = 2}, + [7] = {.lex_state = 79, .external_lex_state = 2}, + [8] = {.lex_state = 79, .external_lex_state = 2}, + [9] = {.lex_state = 79, .external_lex_state = 2}, + [10] = {.lex_state = 79, .external_lex_state = 2}, + [11] = {.lex_state = 79, .external_lex_state = 2}, + [12] = {.lex_state = 79, .external_lex_state = 2}, + [13] = {.lex_state = 79, .external_lex_state = 2}, + [14] = {.lex_state = 81, .external_lex_state = 3}, + [15] = {.lex_state = 81, .external_lex_state = 3}, + [16] = {.lex_state = 81, .external_lex_state = 3}, + [17] = {.lex_state = 81, .external_lex_state = 3}, + [18] = {.lex_state = 81, .external_lex_state = 3}, + [19] = {.lex_state = 81, .external_lex_state = 3}, + [20] = {.lex_state = 79, .external_lex_state = 2}, + [21] = {.lex_state = 79, .external_lex_state = 2}, + [22] = {.lex_state = 79, .external_lex_state = 2}, + [23] = {.lex_state = 79, .external_lex_state = 2}, + [24] = {.lex_state = 79, .external_lex_state = 2}, + [25] = {.lex_state = 81, .external_lex_state = 2}, + [26] = {.lex_state = 79, .external_lex_state = 2}, + [27] = {.lex_state = 79, .external_lex_state = 2}, + [28] = {.lex_state = 79, .external_lex_state = 2}, + [29] = {.lex_state = 79, .external_lex_state = 2}, + [30] = {.lex_state = 79, .external_lex_state = 2}, + [31] = {.lex_state = 81, .external_lex_state = 2}, + [32] = {.lex_state = 79, .external_lex_state = 2}, + [33] = {.lex_state = 79, .external_lex_state = 2}, + [34] = {.lex_state = 260, .external_lex_state = 3}, + [35] = {.lex_state = 260, .external_lex_state = 3}, + [36] = {.lex_state = 260, .external_lex_state = 3}, + [37] = {.lex_state = 79, .external_lex_state = 2}, + [38] = {.lex_state = 79, .external_lex_state = 2}, + [39] = {.lex_state = 79, .external_lex_state = 2}, + [40] = {.lex_state = 79, .external_lex_state = 2}, + [41] = {.lex_state = 86, .external_lex_state = 3}, + [42] = {.lex_state = 260, .external_lex_state = 3}, + [43] = {.lex_state = 260, .external_lex_state = 3}, + [44] = {.lex_state = 86, .external_lex_state = 3}, + [45] = {.lex_state = 260, .external_lex_state = 2}, + [46] = {.lex_state = 260, .external_lex_state = 3}, + [47] = {.lex_state = 260, .external_lex_state = 3}, + [48] = {.lex_state = 86, .external_lex_state = 3}, + [49] = {.lex_state = 260, .external_lex_state = 3}, + [50] = {.lex_state = 260, .external_lex_state = 3}, + [51] = {.lex_state = 260, .external_lex_state = 3}, + [52] = {.lex_state = 260, .external_lex_state = 3}, + [53] = {.lex_state = 260, .external_lex_state = 3}, + [54] = {.lex_state = 260, .external_lex_state = 2}, + [55] = {.lex_state = 260, .external_lex_state = 2}, + [56] = {.lex_state = 260, .external_lex_state = 3}, + [57] = {.lex_state = 260, .external_lex_state = 3}, + [58] = {.lex_state = 260, .external_lex_state = 3}, + [59] = {.lex_state = 260, .external_lex_state = 2}, + [60] = {.lex_state = 89, .external_lex_state = 3}, + [61] = {.lex_state = 89, .external_lex_state = 3}, + [62] = {.lex_state = 89, .external_lex_state = 3}, + [63] = {.lex_state = 86, .external_lex_state = 2}, + [64] = {.lex_state = 79, .external_lex_state = 2}, + [65] = {.lex_state = 260, .external_lex_state = 2}, + [66] = {.lex_state = 79, .external_lex_state = 2}, + [67] = {.lex_state = 260, .external_lex_state = 3}, + [68] = {.lex_state = 260, .external_lex_state = 3}, + [69] = {.lex_state = 79, .external_lex_state = 2}, + [70] = {.lex_state = 79, .external_lex_state = 2}, + [71] = {.lex_state = 260, .external_lex_state = 3}, + [72] = {.lex_state = 89, .external_lex_state = 2}, + [73] = {.lex_state = 92, .external_lex_state = 2}, + [74] = {.lex_state = 92, .external_lex_state = 2}, + [75] = {.lex_state = 92, .external_lex_state = 2}, + [76] = {.lex_state = 260, .external_lex_state = 2}, + [77] = {.lex_state = 92, .external_lex_state = 2}, + [78] = {.lex_state = 92, .external_lex_state = 2}, + [79] = {.lex_state = 92, .external_lex_state = 2}, + [80] = {.lex_state = 92, .external_lex_state = 2}, + [81] = {.lex_state = 92, .external_lex_state = 2}, + [82] = {.lex_state = 92, .external_lex_state = 2}, + [83] = {.lex_state = 92, .external_lex_state = 2}, + [84] = {.lex_state = 92, .external_lex_state = 2}, + [85] = {.lex_state = 92, .external_lex_state = 2}, + [86] = {.lex_state = 92, .external_lex_state = 2}, + [87] = {.lex_state = 92, .external_lex_state = 2}, + [88] = {.lex_state = 92, .external_lex_state = 2}, + [89] = {.lex_state = 92, .external_lex_state = 2}, + [90] = {.lex_state = 92, .external_lex_state = 2}, + [91] = {.lex_state = 92, .external_lex_state = 2}, + [92] = {.lex_state = 92, .external_lex_state = 2}, + [93] = {.lex_state = 92, .external_lex_state = 2}, + [94] = {.lex_state = 92, .external_lex_state = 2}, + [95] = {.lex_state = 92, .external_lex_state = 2}, + [96] = {.lex_state = 92, .external_lex_state = 2}, + [97] = {.lex_state = 92, .external_lex_state = 2}, + [98] = {.lex_state = 92, .external_lex_state = 2}, + [99] = {.lex_state = 92, .external_lex_state = 2}, + [100] = {.lex_state = 92, .external_lex_state = 2}, + [101] = {.lex_state = 92, .external_lex_state = 2}, + [102] = {.lex_state = 92, .external_lex_state = 2}, + [103] = {.lex_state = 92, .external_lex_state = 2}, + [104] = {.lex_state = 92, .external_lex_state = 2}, + [105] = {.lex_state = 92, .external_lex_state = 2}, + [106] = {.lex_state = 92, .external_lex_state = 2}, + [107] = {.lex_state = 92, .external_lex_state = 2}, + [108] = {.lex_state = 260, .external_lex_state = 2}, + [109] = {.lex_state = 92, .external_lex_state = 2}, + [110] = {.lex_state = 92, .external_lex_state = 2}, + [111] = {.lex_state = 92, .external_lex_state = 2}, + [112] = {.lex_state = 92, .external_lex_state = 2}, + [113] = {.lex_state = 92, .external_lex_state = 2}, + [114] = {.lex_state = 92, .external_lex_state = 2}, + [115] = {.lex_state = 92, .external_lex_state = 2}, + [116] = {.lex_state = 92, .external_lex_state = 2}, + [117] = {.lex_state = 92, .external_lex_state = 2}, + [118] = {.lex_state = 92, .external_lex_state = 2}, + [119] = {.lex_state = 92, .external_lex_state = 2}, + [120] = {.lex_state = 92, .external_lex_state = 2}, + [121] = {.lex_state = 92, .external_lex_state = 2}, + [122] = {.lex_state = 92, .external_lex_state = 2}, + [123] = {.lex_state = 92, .external_lex_state = 2}, + [124] = {.lex_state = 92, .external_lex_state = 2}, + [125] = {.lex_state = 92, .external_lex_state = 2}, + [126] = {.lex_state = 92, .external_lex_state = 2}, + [127] = {.lex_state = 92, .external_lex_state = 2}, + [128] = {.lex_state = 92, .external_lex_state = 2}, + [129] = {.lex_state = 92, .external_lex_state = 2}, + [130] = {.lex_state = 92, .external_lex_state = 2}, + [131] = {.lex_state = 92, .external_lex_state = 2}, + [132] = {.lex_state = 92, .external_lex_state = 2}, + [133] = {.lex_state = 92, .external_lex_state = 2}, + [134] = {.lex_state = 92, .external_lex_state = 2}, + [135] = {.lex_state = 92, .external_lex_state = 2}, + [136] = {.lex_state = 92, .external_lex_state = 2}, + [137] = {.lex_state = 92, .external_lex_state = 2}, + [138] = {.lex_state = 92, .external_lex_state = 2}, + [139] = {.lex_state = 92, .external_lex_state = 2}, + [140] = {.lex_state = 94, .external_lex_state = 2}, + [141] = {.lex_state = 94, .external_lex_state = 2}, + [142] = {.lex_state = 94, .external_lex_state = 2}, + [143] = {.lex_state = 94, .external_lex_state = 2}, + [144] = {.lex_state = 94, .external_lex_state = 2}, + [145] = {.lex_state = 94, .external_lex_state = 2}, + [146] = {.lex_state = 94, .external_lex_state = 2}, + [147] = {.lex_state = 94, .external_lex_state = 2}, + [148] = {.lex_state = 94, .external_lex_state = 2}, + [149] = {.lex_state = 94, .external_lex_state = 2}, + [150] = {.lex_state = 94, .external_lex_state = 2}, + [151] = {.lex_state = 94, .external_lex_state = 2}, + [152] = {.lex_state = 94, .external_lex_state = 2}, + [153] = {.lex_state = 94, .external_lex_state = 2}, + [154] = {.lex_state = 94, .external_lex_state = 2}, + [155] = {.lex_state = 94, .external_lex_state = 2}, + [156] = {.lex_state = 94, .external_lex_state = 2}, + [157] = {.lex_state = 94, .external_lex_state = 2}, + [158] = {.lex_state = 94, .external_lex_state = 2}, + [159] = {.lex_state = 94, .external_lex_state = 2}, + [160] = {.lex_state = 94, .external_lex_state = 2}, + [161] = {.lex_state = 94, .external_lex_state = 2}, + [162] = {.lex_state = 94, .external_lex_state = 2}, + [163] = {.lex_state = 94, .external_lex_state = 2}, + [164] = {.lex_state = 94, .external_lex_state = 2}, + [165] = {.lex_state = 94, .external_lex_state = 2}, + [166] = {.lex_state = 94, .external_lex_state = 2}, + [167] = {.lex_state = 94, .external_lex_state = 2}, + [168] = {.lex_state = 94, .external_lex_state = 2}, + [169] = {.lex_state = 94, .external_lex_state = 2}, + [170] = {.lex_state = 94, .external_lex_state = 2}, + [171] = {.lex_state = 94, .external_lex_state = 2}, + [172] = {.lex_state = 94, .external_lex_state = 2}, + [173] = {.lex_state = 94, .external_lex_state = 2}, + [174] = {.lex_state = 94, .external_lex_state = 2}, + [175] = {.lex_state = 94, .external_lex_state = 2}, + [176] = {.lex_state = 94, .external_lex_state = 2}, + [177] = {.lex_state = 94, .external_lex_state = 2}, + [178] = {.lex_state = 92, .external_lex_state = 2}, + [179] = {.lex_state = 92, .external_lex_state = 2}, + [180] = {.lex_state = 96, .external_lex_state = 2}, + [181] = {.lex_state = 92, .external_lex_state = 2}, + [182] = {.lex_state = 92, .external_lex_state = 2}, + [183] = {.lex_state = 92, .external_lex_state = 2}, + [184] = {.lex_state = 92, .external_lex_state = 2}, + [185] = {.lex_state = 92, .external_lex_state = 2}, + [186] = {.lex_state = 92, .external_lex_state = 2}, + [187] = {.lex_state = 92, .external_lex_state = 2}, + [188] = {.lex_state = 92, .external_lex_state = 2}, + [189] = {.lex_state = 96, .external_lex_state = 2}, + [190] = {.lex_state = 92, .external_lex_state = 2}, + [191] = {.lex_state = 92, .external_lex_state = 2}, + [192] = {.lex_state = 92, .external_lex_state = 2}, + [193] = {.lex_state = 92, .external_lex_state = 2}, + [194] = {.lex_state = 92, .external_lex_state = 2}, + [195] = {.lex_state = 92, .external_lex_state = 2}, + [196] = {.lex_state = 92, .external_lex_state = 2}, + [197] = {.lex_state = 92, .external_lex_state = 2}, + [198] = {.lex_state = 96, .external_lex_state = 2}, + [199] = {.lex_state = 92, .external_lex_state = 2}, + [200] = {.lex_state = 92, .external_lex_state = 2}, + [201] = {.lex_state = 92, .external_lex_state = 2}, + [202] = {.lex_state = 92, .external_lex_state = 2}, + [203] = {.lex_state = 92, .external_lex_state = 2}, + [204] = {.lex_state = 92, .external_lex_state = 2}, + [205] = {.lex_state = 96, .external_lex_state = 2}, + [206] = {.lex_state = 92, .external_lex_state = 2}, + [207] = {.lex_state = 92, .external_lex_state = 2}, + [208] = {.lex_state = 96, .external_lex_state = 2}, + [209] = {.lex_state = 92, .external_lex_state = 2}, + [210] = {.lex_state = 92, .external_lex_state = 2}, + [211] = {.lex_state = 92, .external_lex_state = 2}, + [212] = {.lex_state = 92, .external_lex_state = 2}, + [213] = {.lex_state = 96, .external_lex_state = 2}, + [214] = {.lex_state = 92, .external_lex_state = 2}, + [215] = {.lex_state = 92, .external_lex_state = 2}, + [216] = {.lex_state = 92, .external_lex_state = 2}, + [217] = {.lex_state = 92, .external_lex_state = 2}, + [218] = {.lex_state = 92, .external_lex_state = 2}, + [219] = {.lex_state = 92, .external_lex_state = 2}, + [220] = {.lex_state = 92, .external_lex_state = 2}, + [221] = {.lex_state = 92, .external_lex_state = 2}, + [222] = {.lex_state = 96, .external_lex_state = 2}, + [223] = {.lex_state = 92, .external_lex_state = 2}, + [224] = {.lex_state = 92, .external_lex_state = 2}, + [225] = {.lex_state = 92, .external_lex_state = 2}, + [226] = {.lex_state = 92, .external_lex_state = 2}, + [227] = {.lex_state = 96, .external_lex_state = 2}, + [228] = {.lex_state = 92, .external_lex_state = 2}, + [229] = {.lex_state = 96, .external_lex_state = 2}, + [230] = {.lex_state = 92, .external_lex_state = 2}, + [231] = {.lex_state = 92, .external_lex_state = 2}, + [232] = {.lex_state = 92, .external_lex_state = 2}, + [233] = {.lex_state = 92, .external_lex_state = 2}, + [234] = {.lex_state = 92, .external_lex_state = 2}, + [235] = {.lex_state = 92, .external_lex_state = 2}, + [236] = {.lex_state = 96, .external_lex_state = 2}, + [237] = {.lex_state = 92, .external_lex_state = 2}, + [238] = {.lex_state = 92, .external_lex_state = 2}, + [239] = {.lex_state = 92, .external_lex_state = 2}, + [240] = {.lex_state = 92, .external_lex_state = 2}, + [241] = {.lex_state = 92, .external_lex_state = 2}, + [242] = {.lex_state = 92, .external_lex_state = 2}, + [243] = {.lex_state = 92, .external_lex_state = 2}, + [244] = {.lex_state = 92, .external_lex_state = 2}, + [245] = {.lex_state = 96, .external_lex_state = 2}, + [246] = {.lex_state = 92, .external_lex_state = 2}, + [247] = {.lex_state = 92, .external_lex_state = 2}, + [248] = {.lex_state = 92, .external_lex_state = 2}, + [249] = {.lex_state = 92, .external_lex_state = 2}, + [250] = {.lex_state = 92, .external_lex_state = 2}, + [251] = {.lex_state = 92, .external_lex_state = 2}, + [252] = {.lex_state = 92, .external_lex_state = 2}, + [253] = {.lex_state = 92, .external_lex_state = 2}, + [254] = {.lex_state = 92, .external_lex_state = 2}, + [255] = {.lex_state = 92, .external_lex_state = 2}, + [256] = {.lex_state = 96, .external_lex_state = 2}, + [257] = {.lex_state = 92, .external_lex_state = 2}, + [258] = {.lex_state = 94, .external_lex_state = 2}, + [259] = {.lex_state = 94, .external_lex_state = 2}, + [260] = {.lex_state = 94, .external_lex_state = 2}, + [261] = {.lex_state = 96, .external_lex_state = 2}, + [262] = {.lex_state = 96, .external_lex_state = 2}, + [263] = {.lex_state = 92, .external_lex_state = 2}, + [264] = {.lex_state = 92, .external_lex_state = 2}, + [265] = {.lex_state = 92, .external_lex_state = 2}, + [266] = {.lex_state = 92, .external_lex_state = 2}, + [267] = {.lex_state = 92, .external_lex_state = 2}, + [268] = {.lex_state = 92, .external_lex_state = 2}, + [269] = {.lex_state = 92, .external_lex_state = 2}, + [270] = {.lex_state = 92, .external_lex_state = 2}, + [271] = {.lex_state = 92, .external_lex_state = 2}, + [272] = {.lex_state = 92, .external_lex_state = 2}, + [273] = {.lex_state = 92, .external_lex_state = 2}, + [274] = {.lex_state = 92, .external_lex_state = 2}, + [275] = {.lex_state = 92, .external_lex_state = 2}, + [276] = {.lex_state = 94, .external_lex_state = 2}, + [277] = {.lex_state = 92, .external_lex_state = 2}, + [278] = {.lex_state = 94, .external_lex_state = 2}, + [279] = {.lex_state = 92, .external_lex_state = 2}, + [280] = {.lex_state = 92, .external_lex_state = 2}, + [281] = {.lex_state = 92, .external_lex_state = 2}, + [282] = {.lex_state = 92, .external_lex_state = 2}, + [283] = {.lex_state = 92, .external_lex_state = 2}, + [284] = {.lex_state = 94, .external_lex_state = 2}, + [285] = {.lex_state = 94, .external_lex_state = 2}, + [286] = {.lex_state = 94, .external_lex_state = 2}, + [287] = {.lex_state = 94, .external_lex_state = 2}, + [288] = {.lex_state = 92, .external_lex_state = 2}, + [289] = {.lex_state = 94, .external_lex_state = 2}, + [290] = {.lex_state = 92, .external_lex_state = 2}, + [291] = {.lex_state = 92, .external_lex_state = 2}, + [292] = {.lex_state = 94, .external_lex_state = 2}, + [293] = {.lex_state = 92, .external_lex_state = 2}, + [294] = {.lex_state = 92, .external_lex_state = 2}, + [295] = {.lex_state = 92, .external_lex_state = 2}, + [296] = {.lex_state = 94, .external_lex_state = 2}, + [297] = {.lex_state = 98, .external_lex_state = 2}, + [298] = {.lex_state = 92, .external_lex_state = 2}, + [299] = {.lex_state = 92, .external_lex_state = 2}, + [300] = {.lex_state = 92, .external_lex_state = 2}, + [301] = {.lex_state = 92, .external_lex_state = 2}, + [302] = {.lex_state = 94, .external_lex_state = 2}, + [303] = {.lex_state = 92, .external_lex_state = 2}, + [304] = {.lex_state = 92, .external_lex_state = 2}, + [305] = {.lex_state = 92, .external_lex_state = 2}, + [306] = {.lex_state = 92, .external_lex_state = 2}, + [307] = {.lex_state = 94, .external_lex_state = 2}, + [308] = {.lex_state = 92, .external_lex_state = 2}, + [309] = {.lex_state = 92, .external_lex_state = 2}, + [310] = {.lex_state = 92, .external_lex_state = 2}, + [311] = {.lex_state = 92, .external_lex_state = 2}, + [312] = {.lex_state = 92, .external_lex_state = 2}, + [313] = {.lex_state = 92, .external_lex_state = 2}, + [314] = {.lex_state = 92, .external_lex_state = 2}, + [315] = {.lex_state = 92, .external_lex_state = 2}, + [316] = {.lex_state = 92, .external_lex_state = 2}, + [317] = {.lex_state = 92, .external_lex_state = 2}, + [318] = {.lex_state = 92, .external_lex_state = 2}, + [319] = {.lex_state = 92, .external_lex_state = 2}, + [320] = {.lex_state = 92, .external_lex_state = 2}, + [321] = {.lex_state = 98, .external_lex_state = 2}, + [322] = {.lex_state = 92, .external_lex_state = 2}, + [323] = {.lex_state = 92, .external_lex_state = 2}, + [324] = {.lex_state = 92, .external_lex_state = 2}, + [325] = {.lex_state = 92, .external_lex_state = 2}, + [326] = {.lex_state = 92, .external_lex_state = 2}, + [327] = {.lex_state = 92, .external_lex_state = 2}, + [328] = {.lex_state = 92, .external_lex_state = 2}, + [329] = {.lex_state = 92, .external_lex_state = 2}, + [330] = {.lex_state = 92, .external_lex_state = 2}, + [331] = {.lex_state = 258, .external_lex_state = 2}, + [332] = {.lex_state = 92, .external_lex_state = 2}, + [333] = {.lex_state = 92, .external_lex_state = 2}, + [334] = {.lex_state = 92, .external_lex_state = 2}, + [335] = {.lex_state = 92, .external_lex_state = 2}, + [336] = {.lex_state = 94, .external_lex_state = 2}, + [337] = {.lex_state = 92, .external_lex_state = 2}, + [338] = {.lex_state = 92, .external_lex_state = 2}, + [339] = {.lex_state = 92, .external_lex_state = 2}, + [340] = {.lex_state = 258, .external_lex_state = 2}, + [341] = {.lex_state = 92, .external_lex_state = 2}, + [342] = {.lex_state = 92, .external_lex_state = 2}, + [343] = {.lex_state = 92, .external_lex_state = 2}, + [344] = {.lex_state = 92, .external_lex_state = 2}, + [345] = {.lex_state = 98, .external_lex_state = 2}, + [346] = {.lex_state = 258, .external_lex_state = 2}, + [347] = {.lex_state = 258, .external_lex_state = 2}, + [348] = {.lex_state = 98, .external_lex_state = 2}, + [349] = {.lex_state = 258, .external_lex_state = 2}, + [350] = {.lex_state = 98, .external_lex_state = 2}, + [351] = {.lex_state = 258, .external_lex_state = 2}, + [352] = {.lex_state = 258, .external_lex_state = 2}, + [353] = {.lex_state = 258, .external_lex_state = 2}, + [354] = {.lex_state = 258, .external_lex_state = 2}, + [355] = {.lex_state = 258, .external_lex_state = 2}, + [356] = {.lex_state = 258, .external_lex_state = 2}, + [357] = {.lex_state = 258, .external_lex_state = 2}, + [358] = {.lex_state = 258, .external_lex_state = 2}, + [359] = {.lex_state = 258, .external_lex_state = 2}, + [360] = {.lex_state = 258, .external_lex_state = 2}, + [361] = {.lex_state = 258, .external_lex_state = 2}, + [362] = {.lex_state = 258, .external_lex_state = 2}, + [363] = {.lex_state = 258, .external_lex_state = 2}, + [364] = {.lex_state = 258, .external_lex_state = 2}, + [365] = {.lex_state = 258, .external_lex_state = 2}, + [366] = {.lex_state = 258, .external_lex_state = 2}, + [367] = {.lex_state = 258, .external_lex_state = 2}, + [368] = {.lex_state = 258, .external_lex_state = 2}, + [369] = {.lex_state = 258, .external_lex_state = 2}, + [370] = {.lex_state = 258, .external_lex_state = 2}, + [371] = {.lex_state = 258, .external_lex_state = 2}, + [372] = {.lex_state = 258, .external_lex_state = 2}, + [373] = {.lex_state = 258, .external_lex_state = 2}, + [374] = {.lex_state = 258, .external_lex_state = 2}, + [375] = {.lex_state = 258, .external_lex_state = 2}, + [376] = {.lex_state = 258, .external_lex_state = 2}, + [377] = {.lex_state = 258, .external_lex_state = 2}, + [378] = {.lex_state = 258, .external_lex_state = 2}, + [379] = {.lex_state = 258, .external_lex_state = 2}, + [380] = {.lex_state = 258, .external_lex_state = 2}, + [381] = {.lex_state = 258, .external_lex_state = 2}, + [382] = {.lex_state = 258, .external_lex_state = 2}, + [383] = {.lex_state = 258, .external_lex_state = 2}, + [384] = {.lex_state = 258, .external_lex_state = 2}, + [385] = {.lex_state = 258, .external_lex_state = 2}, + [386] = {.lex_state = 258, .external_lex_state = 2}, + [387] = {.lex_state = 258, .external_lex_state = 2}, + [388] = {.lex_state = 258, .external_lex_state = 2}, + [389] = {.lex_state = 258, .external_lex_state = 2}, + [390] = {.lex_state = 258, .external_lex_state = 2}, + [391] = {.lex_state = 258, .external_lex_state = 2}, + [392] = {.lex_state = 258, .external_lex_state = 2}, + [393] = {.lex_state = 258, .external_lex_state = 2}, + [394] = {.lex_state = 258, .external_lex_state = 2}, + [395] = {.lex_state = 258, .external_lex_state = 2}, + [396] = {.lex_state = 258, .external_lex_state = 2}, + [397] = {.lex_state = 258, .external_lex_state = 2}, + [398] = {.lex_state = 258, .external_lex_state = 2}, + [399] = {.lex_state = 258, .external_lex_state = 2}, + [400] = {.lex_state = 258, .external_lex_state = 2}, + [401] = {.lex_state = 258, .external_lex_state = 2}, + [402] = {.lex_state = 258, .external_lex_state = 2}, + [403] = {.lex_state = 258, .external_lex_state = 2}, + [404] = {.lex_state = 258, .external_lex_state = 2}, + [405] = {.lex_state = 258, .external_lex_state = 2}, + [406] = {.lex_state = 258, .external_lex_state = 2}, + [407] = {.lex_state = 258, .external_lex_state = 2}, + [408] = {.lex_state = 258, .external_lex_state = 2}, + [409] = {.lex_state = 258, .external_lex_state = 2}, + [410] = {.lex_state = 258, .external_lex_state = 2}, + [411] = {.lex_state = 258, .external_lex_state = 2}, + [412] = {.lex_state = 258, .external_lex_state = 2}, + [413] = {.lex_state = 258, .external_lex_state = 2}, + [414] = {.lex_state = 258, .external_lex_state = 2}, + [415] = {.lex_state = 258, .external_lex_state = 2}, + [416] = {.lex_state = 258, .external_lex_state = 2}, + [417] = {.lex_state = 258, .external_lex_state = 2}, + [418] = {.lex_state = 258, .external_lex_state = 2}, + [419] = {.lex_state = 258, .external_lex_state = 2}, + [420] = {.lex_state = 258, .external_lex_state = 2}, + [421] = {.lex_state = 258, .external_lex_state = 2}, + [422] = {.lex_state = 258, .external_lex_state = 2}, + [423] = {.lex_state = 258, .external_lex_state = 2}, + [424] = {.lex_state = 258, .external_lex_state = 2}, + [425] = {.lex_state = 258, .external_lex_state = 2}, + [426] = {.lex_state = 258, .external_lex_state = 2}, + [427] = {.lex_state = 258, .external_lex_state = 2}, + [428] = {.lex_state = 258, .external_lex_state = 2}, + [429] = {.lex_state = 258, .external_lex_state = 2}, + [430] = {.lex_state = 258, .external_lex_state = 2}, + [431] = {.lex_state = 258, .external_lex_state = 2}, + [432] = {.lex_state = 258, .external_lex_state = 2}, + [433] = {.lex_state = 258, .external_lex_state = 2}, + [434] = {.lex_state = 258, .external_lex_state = 2}, + [435] = {.lex_state = 258, .external_lex_state = 2}, + [436] = {.lex_state = 258, .external_lex_state = 2}, + [437] = {.lex_state = 258, .external_lex_state = 2}, + [438] = {.lex_state = 258, .external_lex_state = 2}, + [439] = {.lex_state = 258, .external_lex_state = 2}, + [440] = {.lex_state = 258, .external_lex_state = 2}, + [441] = {.lex_state = 258, .external_lex_state = 2}, + [442] = {.lex_state = 258, .external_lex_state = 2}, + [443] = {.lex_state = 258, .external_lex_state = 2}, + [444] = {.lex_state = 258, .external_lex_state = 2}, + [445] = {.lex_state = 258, .external_lex_state = 2}, + [446] = {.lex_state = 258, .external_lex_state = 2}, + [447] = {.lex_state = 258, .external_lex_state = 2}, + [448] = {.lex_state = 258, .external_lex_state = 2}, + [449] = {.lex_state = 258, .external_lex_state = 2}, + [450] = {.lex_state = 258, .external_lex_state = 2}, + [451] = {.lex_state = 258, .external_lex_state = 2}, + [452] = {.lex_state = 258, .external_lex_state = 2}, + [453] = {.lex_state = 258, .external_lex_state = 2}, + [454] = {.lex_state = 258, .external_lex_state = 2}, + [455] = {.lex_state = 258, .external_lex_state = 2}, + [456] = {.lex_state = 258, .external_lex_state = 2}, + [457] = {.lex_state = 258, .external_lex_state = 2}, + [458] = {.lex_state = 258, .external_lex_state = 2}, + [459] = {.lex_state = 258, .external_lex_state = 2}, + [460] = {.lex_state = 258, .external_lex_state = 2}, + [461] = {.lex_state = 258, .external_lex_state = 2}, + [462] = {.lex_state = 258, .external_lex_state = 2}, + [463] = {.lex_state = 258, .external_lex_state = 2}, + [464] = {.lex_state = 258, .external_lex_state = 2}, + [465] = {.lex_state = 258, .external_lex_state = 2}, + [466] = {.lex_state = 258, .external_lex_state = 2}, + [467] = {.lex_state = 258, .external_lex_state = 2}, + [468] = {.lex_state = 258, .external_lex_state = 2}, + [469] = {.lex_state = 258, .external_lex_state = 2}, + [470] = {.lex_state = 258, .external_lex_state = 2}, + [471] = {.lex_state = 258, .external_lex_state = 2}, + [472] = {.lex_state = 258, .external_lex_state = 2}, + [473] = {.lex_state = 258, .external_lex_state = 2}, + [474] = {.lex_state = 258, .external_lex_state = 2}, + [475] = {.lex_state = 258, .external_lex_state = 2}, + [476] = {.lex_state = 258, .external_lex_state = 2}, + [477] = {.lex_state = 258, .external_lex_state = 2}, + [478] = {.lex_state = 258, .external_lex_state = 2}, + [479] = {.lex_state = 258, .external_lex_state = 2}, + [480] = {.lex_state = 258, .external_lex_state = 2}, + [481] = {.lex_state = 258, .external_lex_state = 2}, + [482] = {.lex_state = 258, .external_lex_state = 2}, + [483] = {.lex_state = 258, .external_lex_state = 2}, + [484] = {.lex_state = 258, .external_lex_state = 2}, + [485] = {.lex_state = 258, .external_lex_state = 2}, + [486] = {.lex_state = 258, .external_lex_state = 2}, + [487] = {.lex_state = 258, .external_lex_state = 2}, + [488] = {.lex_state = 258, .external_lex_state = 2}, + [489] = {.lex_state = 258, .external_lex_state = 2}, + [490] = {.lex_state = 258, .external_lex_state = 2}, + [491] = {.lex_state = 258, .external_lex_state = 2}, + [492] = {.lex_state = 258, .external_lex_state = 2}, + [493] = {.lex_state = 258, .external_lex_state = 2}, + [494] = {.lex_state = 258, .external_lex_state = 2}, + [495] = {.lex_state = 258, .external_lex_state = 2}, + [496] = {.lex_state = 258, .external_lex_state = 2}, + [497] = {.lex_state = 258, .external_lex_state = 2}, + [498] = {.lex_state = 258, .external_lex_state = 2}, + [499] = {.lex_state = 258, .external_lex_state = 2}, + [500] = {.lex_state = 258, .external_lex_state = 2}, + [501] = {.lex_state = 258, .external_lex_state = 2}, + [502] = {.lex_state = 258, .external_lex_state = 2}, + [503] = {.lex_state = 258, .external_lex_state = 2}, + [504] = {.lex_state = 258, .external_lex_state = 2}, + [505] = {.lex_state = 258, .external_lex_state = 2}, + [506] = {.lex_state = 258, .external_lex_state = 2}, + [507] = {.lex_state = 258, .external_lex_state = 2}, + [508] = {.lex_state = 258, .external_lex_state = 2}, + [509] = {.lex_state = 258, .external_lex_state = 2}, + [510] = {.lex_state = 258, .external_lex_state = 2}, + [511] = {.lex_state = 258, .external_lex_state = 2}, + [512] = {.lex_state = 258, .external_lex_state = 2}, + [513] = {.lex_state = 258, .external_lex_state = 2}, + [514] = {.lex_state = 258, .external_lex_state = 2}, + [515] = {.lex_state = 258, .external_lex_state = 2}, + [516] = {.lex_state = 258, .external_lex_state = 2}, + [517] = {.lex_state = 258, .external_lex_state = 2}, + [518] = {.lex_state = 258, .external_lex_state = 2}, + [519] = {.lex_state = 258, .external_lex_state = 2}, + [520] = {.lex_state = 258, .external_lex_state = 2}, + [521] = {.lex_state = 258, .external_lex_state = 2}, + [522] = {.lex_state = 258, .external_lex_state = 2}, + [523] = {.lex_state = 258, .external_lex_state = 2}, + [524] = {.lex_state = 258, .external_lex_state = 2}, + [525] = {.lex_state = 258, .external_lex_state = 2}, + [526] = {.lex_state = 258, .external_lex_state = 2}, + [527] = {.lex_state = 258, .external_lex_state = 2}, + [528] = {.lex_state = 258, .external_lex_state = 2}, + [529] = {.lex_state = 258, .external_lex_state = 2}, + [530] = {.lex_state = 258, .external_lex_state = 2}, + [531] = {.lex_state = 258, .external_lex_state = 2}, + [532] = {.lex_state = 258, .external_lex_state = 2}, + [533] = {.lex_state = 258, .external_lex_state = 2}, + [534] = {.lex_state = 258, .external_lex_state = 2}, + [535] = {.lex_state = 258, .external_lex_state = 2}, + [536] = {.lex_state = 258, .external_lex_state = 2}, + [537] = {.lex_state = 258, .external_lex_state = 2}, + [538] = {.lex_state = 258, .external_lex_state = 2}, + [539] = {.lex_state = 258, .external_lex_state = 2}, + [540] = {.lex_state = 258, .external_lex_state = 2}, + [541] = {.lex_state = 258, .external_lex_state = 2}, + [542] = {.lex_state = 258, .external_lex_state = 2}, + [543] = {.lex_state = 258, .external_lex_state = 2}, + [544] = {.lex_state = 258, .external_lex_state = 2}, + [545] = {.lex_state = 258, .external_lex_state = 2}, + [546] = {.lex_state = 258, .external_lex_state = 2}, + [547] = {.lex_state = 258, .external_lex_state = 2}, + [548] = {.lex_state = 258, .external_lex_state = 2}, + [549] = {.lex_state = 258, .external_lex_state = 2}, + [550] = {.lex_state = 258, .external_lex_state = 2}, + [551] = {.lex_state = 258, .external_lex_state = 2}, + [552] = {.lex_state = 258, .external_lex_state = 2}, + [553] = {.lex_state = 258, .external_lex_state = 2}, + [554] = {.lex_state = 258, .external_lex_state = 2}, + [555] = {.lex_state = 258, .external_lex_state = 2}, + [556] = {.lex_state = 258, .external_lex_state = 2}, + [557] = {.lex_state = 258, .external_lex_state = 2}, + [558] = {.lex_state = 258, .external_lex_state = 2}, + [559] = {.lex_state = 258, .external_lex_state = 2}, + [560] = {.lex_state = 258, .external_lex_state = 2}, + [561] = {.lex_state = 258, .external_lex_state = 2}, + [562] = {.lex_state = 258, .external_lex_state = 2}, + [563] = {.lex_state = 258, .external_lex_state = 2}, + [564] = {.lex_state = 258, .external_lex_state = 2}, + [565] = {.lex_state = 258, .external_lex_state = 2}, + [566] = {.lex_state = 258, .external_lex_state = 2}, + [567] = {.lex_state = 258, .external_lex_state = 2}, + [568] = {.lex_state = 258, .external_lex_state = 2}, + [569] = {.lex_state = 258, .external_lex_state = 2}, + [570] = {.lex_state = 258, .external_lex_state = 2}, + [571] = {.lex_state = 258, .external_lex_state = 2}, + [572] = {.lex_state = 258, .external_lex_state = 2}, + [573] = {.lex_state = 258, .external_lex_state = 2}, + [574] = {.lex_state = 258, .external_lex_state = 2}, + [575] = {.lex_state = 258, .external_lex_state = 2}, + [576] = {.lex_state = 258, .external_lex_state = 2}, + [577] = {.lex_state = 258, .external_lex_state = 2}, + [578] = {.lex_state = 258, .external_lex_state = 2}, + [579] = {.lex_state = 258, .external_lex_state = 2}, + [580] = {.lex_state = 258, .external_lex_state = 2}, + [581] = {.lex_state = 258, .external_lex_state = 2}, + [582] = {.lex_state = 258, .external_lex_state = 2}, + [583] = {.lex_state = 258, .external_lex_state = 2}, + [584] = {.lex_state = 258, .external_lex_state = 2}, + [585] = {.lex_state = 258, .external_lex_state = 2}, + [586] = {.lex_state = 258, .external_lex_state = 2}, + [587] = {.lex_state = 258, .external_lex_state = 2}, + [588] = {.lex_state = 258, .external_lex_state = 2}, + [589] = {.lex_state = 258, .external_lex_state = 2}, + [590] = {.lex_state = 258, .external_lex_state = 2}, + [591] = {.lex_state = 258, .external_lex_state = 2}, + [592] = {.lex_state = 258, .external_lex_state = 2}, + [593] = {.lex_state = 258, .external_lex_state = 2}, + [594] = {.lex_state = 258, .external_lex_state = 2}, + [595] = {.lex_state = 258, .external_lex_state = 2}, + [596] = {.lex_state = 258, .external_lex_state = 2}, + [597] = {.lex_state = 258, .external_lex_state = 2}, + [598] = {.lex_state = 258, .external_lex_state = 2}, + [599] = {.lex_state = 258, .external_lex_state = 2}, + [600] = {.lex_state = 258, .external_lex_state = 2}, + [601] = {.lex_state = 258, .external_lex_state = 2}, + [602] = {.lex_state = 258, .external_lex_state = 2}, + [603] = {.lex_state = 258, .external_lex_state = 2}, + [604] = {.lex_state = 258, .external_lex_state = 2}, + [605] = {.lex_state = 258, .external_lex_state = 2}, + [606] = {.lex_state = 258, .external_lex_state = 2}, + [607] = {.lex_state = 258, .external_lex_state = 2}, + [608] = {.lex_state = 258, .external_lex_state = 2}, + [609] = {.lex_state = 258, .external_lex_state = 2}, + [610] = {.lex_state = 258, .external_lex_state = 2}, + [611] = {.lex_state = 258, .external_lex_state = 2}, + [612] = {.lex_state = 258, .external_lex_state = 2}, + [613] = {.lex_state = 258, .external_lex_state = 2}, + [614] = {.lex_state = 258, .external_lex_state = 2}, + [615] = {.lex_state = 258, .external_lex_state = 2}, + [616] = {.lex_state = 258, .external_lex_state = 2}, + [617] = {.lex_state = 258, .external_lex_state = 2}, + [618] = {.lex_state = 258, .external_lex_state = 2}, + [619] = {.lex_state = 258, .external_lex_state = 2}, + [620] = {.lex_state = 258, .external_lex_state = 2}, + [621] = {.lex_state = 258, .external_lex_state = 2}, + [622] = {.lex_state = 258, .external_lex_state = 2}, + [623] = {.lex_state = 258, .external_lex_state = 2}, + [624] = {.lex_state = 258, .external_lex_state = 2}, + [625] = {.lex_state = 258, .external_lex_state = 2}, + [626] = {.lex_state = 258, .external_lex_state = 2}, + [627] = {.lex_state = 258, .external_lex_state = 2}, + [628] = {.lex_state = 258, .external_lex_state = 2}, + [629] = {.lex_state = 258, .external_lex_state = 2}, + [630] = {.lex_state = 258, .external_lex_state = 2}, + [631] = {.lex_state = 258, .external_lex_state = 2}, + [632] = {.lex_state = 258, .external_lex_state = 2}, + [633] = {.lex_state = 258, .external_lex_state = 2}, + [634] = {.lex_state = 258, .external_lex_state = 2}, + [635] = {.lex_state = 258, .external_lex_state = 2}, + [636] = {.lex_state = 258, .external_lex_state = 2}, + [637] = {.lex_state = 258, .external_lex_state = 2}, + [638] = {.lex_state = 258, .external_lex_state = 2}, + [639] = {.lex_state = 258, .external_lex_state = 2}, + [640] = {.lex_state = 258, .external_lex_state = 2}, + [641] = {.lex_state = 258, .external_lex_state = 2}, + [642] = {.lex_state = 258, .external_lex_state = 2}, + [643] = {.lex_state = 258, .external_lex_state = 2}, + [644] = {.lex_state = 258, .external_lex_state = 2}, + [645] = {.lex_state = 258, .external_lex_state = 2}, + [646] = {.lex_state = 258, .external_lex_state = 2}, + [647] = {.lex_state = 258, .external_lex_state = 2}, + [648] = {.lex_state = 258, .external_lex_state = 2}, + [649] = {.lex_state = 258, .external_lex_state = 2}, + [650] = {.lex_state = 258, .external_lex_state = 2}, + [651] = {.lex_state = 258, .external_lex_state = 2}, + [652] = {.lex_state = 258, .external_lex_state = 2}, + [653] = {.lex_state = 258, .external_lex_state = 2}, + [654] = {.lex_state = 258, .external_lex_state = 2}, + [655] = {.lex_state = 258, .external_lex_state = 2}, + [656] = {.lex_state = 258, .external_lex_state = 2}, + [657] = {.lex_state = 258, .external_lex_state = 2}, + [658] = {.lex_state = 258, .external_lex_state = 2}, + [659] = {.lex_state = 258, .external_lex_state = 2}, + [660] = {.lex_state = 258, .external_lex_state = 2}, + [661] = {.lex_state = 258, .external_lex_state = 2}, + [662] = {.lex_state = 258, .external_lex_state = 2}, + [663] = {.lex_state = 258, .external_lex_state = 2}, + [664] = {.lex_state = 258, .external_lex_state = 2}, + [665] = {.lex_state = 258, .external_lex_state = 2}, + [666] = {.lex_state = 258, .external_lex_state = 2}, + [667] = {.lex_state = 258, .external_lex_state = 2}, + [668] = {.lex_state = 258, .external_lex_state = 2}, + [669] = {.lex_state = 258, .external_lex_state = 2}, + [670] = {.lex_state = 258, .external_lex_state = 2}, + [671] = {.lex_state = 258, .external_lex_state = 2}, + [672] = {.lex_state = 258, .external_lex_state = 2}, + [673] = {.lex_state = 258, .external_lex_state = 2}, + [674] = {.lex_state = 258, .external_lex_state = 2}, + [675] = {.lex_state = 258, .external_lex_state = 2}, + [676] = {.lex_state = 258, .external_lex_state = 2}, + [677] = {.lex_state = 258, .external_lex_state = 2}, + [678] = {.lex_state = 258, .external_lex_state = 2}, + [679] = {.lex_state = 258, .external_lex_state = 2}, + [680] = {.lex_state = 258, .external_lex_state = 2}, + [681] = {.lex_state = 258, .external_lex_state = 2}, + [682] = {.lex_state = 258, .external_lex_state = 2}, + [683] = {.lex_state = 258, .external_lex_state = 2}, + [684] = {.lex_state = 258, .external_lex_state = 2}, + [685] = {.lex_state = 258, .external_lex_state = 2}, + [686] = {.lex_state = 258, .external_lex_state = 2}, + [687] = {.lex_state = 258, .external_lex_state = 2}, + [688] = {.lex_state = 258, .external_lex_state = 2}, + [689] = {.lex_state = 258, .external_lex_state = 2}, + [690] = {.lex_state = 258, .external_lex_state = 2}, + [691] = {.lex_state = 258, .external_lex_state = 2}, + [692] = {.lex_state = 258, .external_lex_state = 2}, + [693] = {.lex_state = 258, .external_lex_state = 2}, + [694] = {.lex_state = 258, .external_lex_state = 2}, + [695] = {.lex_state = 258, .external_lex_state = 2}, + [696] = {.lex_state = 258, .external_lex_state = 2}, + [697] = {.lex_state = 258, .external_lex_state = 2}, + [698] = {.lex_state = 258, .external_lex_state = 2}, + [699] = {.lex_state = 258, .external_lex_state = 2}, + [700] = {.lex_state = 258, .external_lex_state = 2}, + [701] = {.lex_state = 258, .external_lex_state = 2}, + [702] = {.lex_state = 258, .external_lex_state = 2}, + [703] = {.lex_state = 258, .external_lex_state = 2}, + [704] = {.lex_state = 258, .external_lex_state = 2}, + [705] = {.lex_state = 258, .external_lex_state = 2}, + [706] = {.lex_state = 258, .external_lex_state = 2}, + [707] = {.lex_state = 258, .external_lex_state = 2}, + [708] = {.lex_state = 258, .external_lex_state = 2}, + [709] = {.lex_state = 258, .external_lex_state = 2}, + [710] = {.lex_state = 258, .external_lex_state = 2}, + [711] = {.lex_state = 258, .external_lex_state = 2}, + [712] = {.lex_state = 258, .external_lex_state = 2}, + [713] = {.lex_state = 258, .external_lex_state = 2}, + [714] = {.lex_state = 258, .external_lex_state = 2}, + [715] = {.lex_state = 258, .external_lex_state = 2}, + [716] = {.lex_state = 258, .external_lex_state = 2}, + [717] = {.lex_state = 258, .external_lex_state = 2}, + [718] = {.lex_state = 258, .external_lex_state = 2}, + [719] = {.lex_state = 258, .external_lex_state = 2}, + [720] = {.lex_state = 258, .external_lex_state = 2}, + [721] = {.lex_state = 258, .external_lex_state = 2}, + [722] = {.lex_state = 258, .external_lex_state = 2}, + [723] = {.lex_state = 258, .external_lex_state = 2}, + [724] = {.lex_state = 258, .external_lex_state = 2}, + [725] = {.lex_state = 258, .external_lex_state = 2}, + [726] = {.lex_state = 258, .external_lex_state = 2}, + [727] = {.lex_state = 258, .external_lex_state = 2}, + [728] = {.lex_state = 258, .external_lex_state = 2}, + [729] = {.lex_state = 258, .external_lex_state = 2}, + [730] = {.lex_state = 258, .external_lex_state = 2}, + [731] = {.lex_state = 258, .external_lex_state = 2}, + [732] = {.lex_state = 258, .external_lex_state = 2}, + [733] = {.lex_state = 258, .external_lex_state = 2}, + [734] = {.lex_state = 258, .external_lex_state = 2}, + [735] = {.lex_state = 258, .external_lex_state = 2}, + [736] = {.lex_state = 258, .external_lex_state = 2}, + [737] = {.lex_state = 258, .external_lex_state = 2}, + [738] = {.lex_state = 258, .external_lex_state = 2}, + [739] = {.lex_state = 258, .external_lex_state = 2}, + [740] = {.lex_state = 258, .external_lex_state = 2}, + [741] = {.lex_state = 258, .external_lex_state = 2}, + [742] = {.lex_state = 258, .external_lex_state = 2}, + [743] = {.lex_state = 258, .external_lex_state = 2}, + [744] = {.lex_state = 258, .external_lex_state = 2}, + [745] = {.lex_state = 258, .external_lex_state = 2}, + [746] = {.lex_state = 258, .external_lex_state = 2}, + [747] = {.lex_state = 258, .external_lex_state = 2}, + [748] = {.lex_state = 258, .external_lex_state = 2}, + [749] = {.lex_state = 258, .external_lex_state = 2}, + [750] = {.lex_state = 258, .external_lex_state = 2}, + [751] = {.lex_state = 258, .external_lex_state = 2}, + [752] = {.lex_state = 258, .external_lex_state = 2}, + [753] = {.lex_state = 258, .external_lex_state = 2}, + [754] = {.lex_state = 258, .external_lex_state = 2}, + [755] = {.lex_state = 258, .external_lex_state = 2}, + [756] = {.lex_state = 258, .external_lex_state = 2}, + [757] = {.lex_state = 258, .external_lex_state = 2}, + [758] = {.lex_state = 258, .external_lex_state = 2}, + [759] = {.lex_state = 258, .external_lex_state = 2}, + [760] = {.lex_state = 258, .external_lex_state = 2}, + [761] = {.lex_state = 258, .external_lex_state = 2}, + [762] = {.lex_state = 258, .external_lex_state = 2}, + [763] = {.lex_state = 258, .external_lex_state = 2}, + [764] = {.lex_state = 258, .external_lex_state = 2}, + [765] = {.lex_state = 258, .external_lex_state = 2}, + [766] = {.lex_state = 258, .external_lex_state = 2}, + [767] = {.lex_state = 258, .external_lex_state = 2}, + [768] = {.lex_state = 258, .external_lex_state = 2}, + [769] = {.lex_state = 258, .external_lex_state = 2}, + [770] = {.lex_state = 258, .external_lex_state = 2}, + [771] = {.lex_state = 258, .external_lex_state = 2}, + [772] = {.lex_state = 258, .external_lex_state = 2}, + [773] = {.lex_state = 258, .external_lex_state = 2}, + [774] = {.lex_state = 258, .external_lex_state = 2}, + [775] = {.lex_state = 258, .external_lex_state = 2}, + [776] = {.lex_state = 258, .external_lex_state = 2}, + [777] = {.lex_state = 258, .external_lex_state = 2}, + [778] = {.lex_state = 258, .external_lex_state = 2}, + [779] = {.lex_state = 258, .external_lex_state = 2}, + [780] = {.lex_state = 258, .external_lex_state = 2}, + [781] = {.lex_state = 258, .external_lex_state = 2}, + [782] = {.lex_state = 258, .external_lex_state = 2}, + [783] = {.lex_state = 258, .external_lex_state = 2}, + [784] = {.lex_state = 258, .external_lex_state = 2}, + [785] = {.lex_state = 258, .external_lex_state = 2}, + [786] = {.lex_state = 258, .external_lex_state = 2}, + [787] = {.lex_state = 258, .external_lex_state = 2}, + [788] = {.lex_state = 258, .external_lex_state = 2}, + [789] = {.lex_state = 258, .external_lex_state = 2}, + [790] = {.lex_state = 258, .external_lex_state = 2}, + [791] = {.lex_state = 258, .external_lex_state = 2}, + [792] = {.lex_state = 258, .external_lex_state = 2}, + [793] = {.lex_state = 258, .external_lex_state = 2}, + [794] = {.lex_state = 258, .external_lex_state = 2}, + [795] = {.lex_state = 258, .external_lex_state = 2}, + [796] = {.lex_state = 258, .external_lex_state = 2}, + [797] = {.lex_state = 258, .external_lex_state = 2}, + [798] = {.lex_state = 258, .external_lex_state = 2}, + [799] = {.lex_state = 258, .external_lex_state = 2}, + [800] = {.lex_state = 258, .external_lex_state = 2}, + [801] = {.lex_state = 258, .external_lex_state = 2}, + [802] = {.lex_state = 258, .external_lex_state = 2}, + [803] = {.lex_state = 258, .external_lex_state = 2}, + [804] = {.lex_state = 258, .external_lex_state = 2}, + [805] = {.lex_state = 258, .external_lex_state = 2}, + [806] = {.lex_state = 258, .external_lex_state = 2}, + [807] = {.lex_state = 258, .external_lex_state = 2}, + [808] = {.lex_state = 258, .external_lex_state = 2}, + [809] = {.lex_state = 258, .external_lex_state = 2}, + [810] = {.lex_state = 258, .external_lex_state = 2}, + [811] = {.lex_state = 258, .external_lex_state = 2}, + [812] = {.lex_state = 258, .external_lex_state = 2}, + [813] = {.lex_state = 258, .external_lex_state = 2}, + [814] = {.lex_state = 258, .external_lex_state = 2}, + [815] = {.lex_state = 258, .external_lex_state = 2}, + [816] = {.lex_state = 258, .external_lex_state = 2}, + [817] = {.lex_state = 258, .external_lex_state = 2}, + [818] = {.lex_state = 258, .external_lex_state = 2}, + [819] = {.lex_state = 258, .external_lex_state = 2}, + [820] = {.lex_state = 258, .external_lex_state = 2}, + [821] = {.lex_state = 258, .external_lex_state = 2}, + [822] = {.lex_state = 258, .external_lex_state = 2}, + [823] = {.lex_state = 258, .external_lex_state = 2}, + [824] = {.lex_state = 258, .external_lex_state = 2}, + [825] = {.lex_state = 258, .external_lex_state = 2}, + [826] = {.lex_state = 258, .external_lex_state = 2}, + [827] = {.lex_state = 258, .external_lex_state = 2}, + [828] = {.lex_state = 258, .external_lex_state = 2}, + [829] = {.lex_state = 258, .external_lex_state = 2}, + [830] = {.lex_state = 258, .external_lex_state = 2}, + [831] = {.lex_state = 258, .external_lex_state = 2}, + [832] = {.lex_state = 258, .external_lex_state = 2}, + [833] = {.lex_state = 258, .external_lex_state = 2}, + [834] = {.lex_state = 258, .external_lex_state = 2}, + [835] = {.lex_state = 258, .external_lex_state = 2}, + [836] = {.lex_state = 258, .external_lex_state = 2}, + [837] = {.lex_state = 258, .external_lex_state = 2}, + [838] = {.lex_state = 258, .external_lex_state = 2}, + [839] = {.lex_state = 258, .external_lex_state = 2}, + [840] = {.lex_state = 258, .external_lex_state = 2}, + [841] = {.lex_state = 258, .external_lex_state = 2}, + [842] = {.lex_state = 258, .external_lex_state = 2}, + [843] = {.lex_state = 258, .external_lex_state = 2}, + [844] = {.lex_state = 258, .external_lex_state = 2}, + [845] = {.lex_state = 258, .external_lex_state = 2}, + [846] = {.lex_state = 258, .external_lex_state = 2}, + [847] = {.lex_state = 258, .external_lex_state = 2}, + [848] = {.lex_state = 258, .external_lex_state = 2}, + [849] = {.lex_state = 258, .external_lex_state = 2}, + [850] = {.lex_state = 258, .external_lex_state = 2}, + [851] = {.lex_state = 258, .external_lex_state = 2}, + [852] = {.lex_state = 258, .external_lex_state = 2}, + [853] = {.lex_state = 258, .external_lex_state = 2}, + [854] = {.lex_state = 258, .external_lex_state = 2}, + [855] = {.lex_state = 258, .external_lex_state = 2}, + [856] = {.lex_state = 258, .external_lex_state = 2}, + [857] = {.lex_state = 258, .external_lex_state = 2}, + [858] = {.lex_state = 258, .external_lex_state = 2}, + [859] = {.lex_state = 258, .external_lex_state = 2}, + [860] = {.lex_state = 258, .external_lex_state = 2}, + [861] = {.lex_state = 258, .external_lex_state = 2}, + [862] = {.lex_state = 258, .external_lex_state = 2}, + [863] = {.lex_state = 258, .external_lex_state = 2}, + [864] = {.lex_state = 258, .external_lex_state = 2}, + [865] = {.lex_state = 258, .external_lex_state = 2}, + [866] = {.lex_state = 258, .external_lex_state = 2}, + [867] = {.lex_state = 258, .external_lex_state = 2}, + [868] = {.lex_state = 258, .external_lex_state = 2}, + [869] = {.lex_state = 258, .external_lex_state = 2}, + [870] = {.lex_state = 258, .external_lex_state = 2}, + [871] = {.lex_state = 258, .external_lex_state = 2}, + [872] = {.lex_state = 258, .external_lex_state = 2}, + [873] = {.lex_state = 258, .external_lex_state = 2}, + [874] = {.lex_state = 258, .external_lex_state = 2}, + [875] = {.lex_state = 258, .external_lex_state = 2}, + [876] = {.lex_state = 258, .external_lex_state = 2}, + [877] = {.lex_state = 258, .external_lex_state = 2}, + [878] = {.lex_state = 258, .external_lex_state = 2}, + [879] = {.lex_state = 258, .external_lex_state = 2}, + [880] = {.lex_state = 258, .external_lex_state = 2}, + [881] = {.lex_state = 258, .external_lex_state = 2}, + [882] = {.lex_state = 258, .external_lex_state = 2}, + [883] = {.lex_state = 258, .external_lex_state = 2}, + [884] = {.lex_state = 258, .external_lex_state = 2}, + [885] = {.lex_state = 258, .external_lex_state = 2}, + [886] = {.lex_state = 258, .external_lex_state = 2}, + [887] = {.lex_state = 258, .external_lex_state = 2}, + [888] = {.lex_state = 258, .external_lex_state = 2}, + [889] = {.lex_state = 258, .external_lex_state = 2}, + [890] = {.lex_state = 258, .external_lex_state = 2}, + [891] = {.lex_state = 258, .external_lex_state = 2}, + [892] = {.lex_state = 258, .external_lex_state = 2}, + [893] = {.lex_state = 258, .external_lex_state = 2}, + [894] = {.lex_state = 258, .external_lex_state = 2}, + [895] = {.lex_state = 258, .external_lex_state = 2}, + [896] = {.lex_state = 258, .external_lex_state = 2}, + [897] = {.lex_state = 258, .external_lex_state = 2}, + [898] = {.lex_state = 258, .external_lex_state = 2}, + [899] = {.lex_state = 258, .external_lex_state = 2}, + [900] = {.lex_state = 258, .external_lex_state = 2}, + [901] = {.lex_state = 258, .external_lex_state = 2}, + [902] = {.lex_state = 258, .external_lex_state = 2}, + [903] = {.lex_state = 258, .external_lex_state = 2}, + [904] = {.lex_state = 258, .external_lex_state = 2}, + [905] = {.lex_state = 258, .external_lex_state = 2}, + [906] = {.lex_state = 258, .external_lex_state = 2}, + [907] = {.lex_state = 258, .external_lex_state = 2}, + [908] = {.lex_state = 258, .external_lex_state = 2}, + [909] = {.lex_state = 81, .external_lex_state = 3}, + [910] = {.lex_state = 81, .external_lex_state = 3}, + [911] = {.lex_state = 81, .external_lex_state = 3}, + [912] = {.lex_state = 81, .external_lex_state = 3}, + [913] = {.lex_state = 81, .external_lex_state = 3}, + [914] = {.lex_state = 81, .external_lex_state = 3}, + [915] = {.lex_state = 81, .external_lex_state = 3}, + [916] = {.lex_state = 81, .external_lex_state = 3}, + [917] = {.lex_state = 81, .external_lex_state = 3}, + [918] = {.lex_state = 81, .external_lex_state = 3}, + [919] = {.lex_state = 81, .external_lex_state = 3}, + [920] = {.lex_state = 81, .external_lex_state = 3}, + [921] = {.lex_state = 81, .external_lex_state = 3}, + [922] = {.lex_state = 81, .external_lex_state = 3}, + [923] = {.lex_state = 81, .external_lex_state = 3}, + [924] = {.lex_state = 81, .external_lex_state = 3}, + [925] = {.lex_state = 81, .external_lex_state = 2}, + [926] = {.lex_state = 81, .external_lex_state = 2}, + [927] = {.lex_state = 260, .external_lex_state = 3}, + [928] = {.lex_state = 260, .external_lex_state = 3}, + [929] = {.lex_state = 260, .external_lex_state = 3}, + [930] = {.lex_state = 260, .external_lex_state = 3}, + [931] = {.lex_state = 260, .external_lex_state = 3}, + [932] = {.lex_state = 260, .external_lex_state = 3}, + [933] = {.lex_state = 260, .external_lex_state = 3}, + [934] = {.lex_state = 260, .external_lex_state = 3}, + [935] = {.lex_state = 260, .external_lex_state = 3}, + [936] = {.lex_state = 260, .external_lex_state = 3}, + [937] = {.lex_state = 260, .external_lex_state = 3}, + [938] = {.lex_state = 260, .external_lex_state = 3}, + [939] = {.lex_state = 260, .external_lex_state = 3}, + [940] = {.lex_state = 260, .external_lex_state = 3}, + [941] = {.lex_state = 260, .external_lex_state = 3}, + [942] = {.lex_state = 260, .external_lex_state = 3}, + [943] = {.lex_state = 86, .external_lex_state = 3}, + [944] = {.lex_state = 86, .external_lex_state = 3}, + [945] = {.lex_state = 260, .external_lex_state = 3}, + [946] = {.lex_state = 260, .external_lex_state = 3}, + [947] = {.lex_state = 260, .external_lex_state = 3}, + [948] = {.lex_state = 260, .external_lex_state = 3}, + [949] = {.lex_state = 260, .external_lex_state = 3}, + [950] = {.lex_state = 260, .external_lex_state = 3}, + [951] = {.lex_state = 260, .external_lex_state = 3}, + [952] = {.lex_state = 260, .external_lex_state = 3}, + [953] = {.lex_state = 260, .external_lex_state = 3}, + [954] = {.lex_state = 86, .external_lex_state = 3}, + [955] = {.lex_state = 260, .external_lex_state = 3}, + [956] = {.lex_state = 260, .external_lex_state = 3}, + [957] = {.lex_state = 260, .external_lex_state = 3}, + [958] = {.lex_state = 260, .external_lex_state = 2}, + [959] = {.lex_state = 260, .external_lex_state = 2}, + [960] = {.lex_state = 260, .external_lex_state = 3}, + [961] = {.lex_state = 86, .external_lex_state = 3}, + [962] = {.lex_state = 86, .external_lex_state = 3}, + [963] = {.lex_state = 86, .external_lex_state = 3}, + [964] = {.lex_state = 260, .external_lex_state = 3}, + [965] = {.lex_state = 260, .external_lex_state = 3}, + [966] = {.lex_state = 260, .external_lex_state = 3}, + [967] = {.lex_state = 260, .external_lex_state = 3}, + [968] = {.lex_state = 86, .external_lex_state = 3}, + [969] = {.lex_state = 86, .external_lex_state = 3}, + [970] = {.lex_state = 260, .external_lex_state = 3}, + [971] = {.lex_state = 86, .external_lex_state = 3}, + [972] = {.lex_state = 86, .external_lex_state = 3}, + [973] = {.lex_state = 86, .external_lex_state = 3}, + [974] = {.lex_state = 260, .external_lex_state = 3}, + [975] = {.lex_state = 260, .external_lex_state = 3}, + [976] = {.lex_state = 86, .external_lex_state = 3}, + [977] = {.lex_state = 86, .external_lex_state = 3}, + [978] = {.lex_state = 86, .external_lex_state = 3}, + [979] = {.lex_state = 260, .external_lex_state = 3}, + [980] = {.lex_state = 260, .external_lex_state = 3}, + [981] = {.lex_state = 260, .external_lex_state = 3}, + [982] = {.lex_state = 260, .external_lex_state = 3}, + [983] = {.lex_state = 260, .external_lex_state = 3}, + [984] = {.lex_state = 260, .external_lex_state = 3}, + [985] = {.lex_state = 260, .external_lex_state = 3}, + [986] = {.lex_state = 260, .external_lex_state = 3}, + [987] = {.lex_state = 86, .external_lex_state = 3}, + [988] = {.lex_state = 260, .external_lex_state = 3}, + [989] = {.lex_state = 86, .external_lex_state = 3}, + [990] = {.lex_state = 260, .external_lex_state = 3}, + [991] = {.lex_state = 260, .external_lex_state = 3}, + [992] = {.lex_state = 260, .external_lex_state = 3}, + [993] = {.lex_state = 89, .external_lex_state = 3}, + [994] = {.lex_state = 260, .external_lex_state = 2}, + [995] = {.lex_state = 86, .external_lex_state = 2}, + [996] = {.lex_state = 89, .external_lex_state = 3}, + [997] = {.lex_state = 89, .external_lex_state = 3}, + [998] = {.lex_state = 89, .external_lex_state = 3}, + [999] = {.lex_state = 260, .external_lex_state = 2}, + [1000] = {.lex_state = 86, .external_lex_state = 2}, + [1001] = {.lex_state = 260, .external_lex_state = 2}, + [1002] = {.lex_state = 89, .external_lex_state = 3}, + [1003] = {.lex_state = 89, .external_lex_state = 3}, + [1004] = {.lex_state = 89, .external_lex_state = 3}, + [1005] = {.lex_state = 89, .external_lex_state = 3}, + [1006] = {.lex_state = 89, .external_lex_state = 3}, + [1007] = {.lex_state = 89, .external_lex_state = 3}, + [1008] = {.lex_state = 89, .external_lex_state = 3}, + [1009] = {.lex_state = 89, .external_lex_state = 3}, + [1010] = {.lex_state = 89, .external_lex_state = 3}, + [1011] = {.lex_state = 89, .external_lex_state = 3}, + [1012] = {.lex_state = 260, .external_lex_state = 2}, + [1013] = {.lex_state = 89, .external_lex_state = 3}, + [1014] = {.lex_state = 89, .external_lex_state = 3}, + [1015] = {.lex_state = 89, .external_lex_state = 2}, + [1016] = {.lex_state = 89, .external_lex_state = 2}, + [1017] = {.lex_state = 79, .external_lex_state = 2}, + [1018] = {.lex_state = 79, .external_lex_state = 2}, + [1019] = {.lex_state = 94, .external_lex_state = 2}, + [1020] = {.lex_state = 94, .external_lex_state = 2}, + [1021] = {.lex_state = 94, .external_lex_state = 2}, + [1022] = {.lex_state = 94, .external_lex_state = 2}, + [1023] = {.lex_state = 79, .external_lex_state = 2}, + [1024] = {.lex_state = 94, .external_lex_state = 2}, + [1025] = {.lex_state = 92, .external_lex_state = 2}, + [1026] = {.lex_state = 92, .external_lex_state = 2}, + [1027] = {.lex_state = 98, .external_lex_state = 2}, + [1028] = {.lex_state = 258, .external_lex_state = 2}, + [1029] = {.lex_state = 258, .external_lex_state = 2}, + [1030] = {.lex_state = 258, .external_lex_state = 2}, + [1031] = {.lex_state = 98, .external_lex_state = 2}, + [1032] = {.lex_state = 258, .external_lex_state = 2}, + [1033] = {.lex_state = 258, .external_lex_state = 2}, + [1034] = {.lex_state = 258, .external_lex_state = 2}, + [1035] = {.lex_state = 92, .external_lex_state = 2}, + [1036] = {.lex_state = 98, .external_lex_state = 2}, + [1037] = {.lex_state = 258, .external_lex_state = 2}, + [1038] = {.lex_state = 100, .external_lex_state = 4}, + [1039] = {.lex_state = 258, .external_lex_state = 2}, + [1040] = {.lex_state = 100, .external_lex_state = 4}, + [1041] = {.lex_state = 100, .external_lex_state = 4}, + [1042] = {.lex_state = 100, .external_lex_state = 4}, + [1043] = {.lex_state = 100, .external_lex_state = 4}, + [1044] = {.lex_state = 100, .external_lex_state = 4}, + [1045] = {.lex_state = 100, .external_lex_state = 4}, + [1046] = {.lex_state = 100, .external_lex_state = 4}, + [1047] = {.lex_state = 100, .external_lex_state = 4}, + [1048] = {.lex_state = 100, .external_lex_state = 4}, + [1049] = {.lex_state = 100, .external_lex_state = 4}, + [1050] = {.lex_state = 100, .external_lex_state = 4}, + [1051] = {.lex_state = 100, .external_lex_state = 4}, + [1052] = {.lex_state = 100, .external_lex_state = 4}, + [1053] = {.lex_state = 100, .external_lex_state = 4}, + [1054] = {.lex_state = 100, .external_lex_state = 4}, + [1055] = {.lex_state = 100, .external_lex_state = 4}, + [1056] = {.lex_state = 100, .external_lex_state = 4}, + [1057] = {.lex_state = 258, .external_lex_state = 2}, + [1058] = {.lex_state = 102, .external_lex_state = 4}, + [1059] = {.lex_state = 102, .external_lex_state = 4}, + [1060] = {.lex_state = 102, .external_lex_state = 4}, + [1061] = {.lex_state = 102, .external_lex_state = 4}, + [1062] = {.lex_state = 102, .external_lex_state = 4}, + [1063] = {.lex_state = 102, .external_lex_state = 4}, + [1064] = {.lex_state = 102, .external_lex_state = 4}, + [1065] = {.lex_state = 102, .external_lex_state = 4}, + [1066] = {.lex_state = 102, .external_lex_state = 4}, + [1067] = {.lex_state = 102, .external_lex_state = 4}, + [1068] = {.lex_state = 102, .external_lex_state = 4}, + [1069] = {.lex_state = 102, .external_lex_state = 4}, + [1070] = {.lex_state = 102, .external_lex_state = 4}, + [1071] = {.lex_state = 102, .external_lex_state = 4}, + [1072] = {.lex_state = 102, .external_lex_state = 4}, + [1073] = {.lex_state = 102, .external_lex_state = 4}, + [1074] = {.lex_state = 102, .external_lex_state = 4}, + [1075] = {.lex_state = 102, .external_lex_state = 4}, + [1076] = {.lex_state = 102, .external_lex_state = 4}, + [1077] = {.lex_state = 102, .external_lex_state = 4}, + [1078] = {.lex_state = 102, .external_lex_state = 4}, + [1079] = {.lex_state = 102, .external_lex_state = 4}, + [1080] = {.lex_state = 102, .external_lex_state = 4}, + [1081] = {.lex_state = 102, .external_lex_state = 4}, + [1082] = {.lex_state = 102, .external_lex_state = 5}, + [1083] = {.lex_state = 102, .external_lex_state = 5}, + [1084] = {.lex_state = 102, .external_lex_state = 5}, + [1085] = {.lex_state = 102, .external_lex_state = 5}, + [1086] = {.lex_state = 102, .external_lex_state = 5}, + [1087] = {.lex_state = 102, .external_lex_state = 5}, + [1088] = {.lex_state = 262, .external_lex_state = 5}, + [1089] = {.lex_state = 102, .external_lex_state = 4}, + [1090] = {.lex_state = 102, .external_lex_state = 5}, + [1091] = {.lex_state = 102, .external_lex_state = 4}, + [1092] = {.lex_state = 102, .external_lex_state = 4}, + [1093] = {.lex_state = 102, .external_lex_state = 4}, + [1094] = {.lex_state = 262, .external_lex_state = 5}, + [1095] = {.lex_state = 262, .external_lex_state = 5}, + [1096] = {.lex_state = 102, .external_lex_state = 4}, + [1097] = {.lex_state = 102, .external_lex_state = 4}, + [1098] = {.lex_state = 102, .external_lex_state = 4}, + [1099] = {.lex_state = 102, .external_lex_state = 5}, + [1100] = {.lex_state = 102, .external_lex_state = 4}, + [1101] = {.lex_state = 102, .external_lex_state = 5}, + [1102] = {.lex_state = 102, .external_lex_state = 5}, + [1103] = {.lex_state = 102, .external_lex_state = 5}, + [1104] = {.lex_state = 102, .external_lex_state = 5}, + [1105] = {.lex_state = 102, .external_lex_state = 5}, + [1106] = {.lex_state = 102, .external_lex_state = 5}, + [1107] = {.lex_state = 102, .external_lex_state = 5}, + [1108] = {.lex_state = 102, .external_lex_state = 5}, + [1109] = {.lex_state = 102, .external_lex_state = 5}, + [1110] = {.lex_state = 102, .external_lex_state = 5}, + [1111] = {.lex_state = 102, .external_lex_state = 5}, + [1112] = {.lex_state = 102, .external_lex_state = 5}, + [1113] = {.lex_state = 102, .external_lex_state = 5}, + [1114] = {.lex_state = 262, .external_lex_state = 5}, + [1115] = {.lex_state = 102, .external_lex_state = 5}, + [1116] = {.lex_state = 102, .external_lex_state = 5}, + [1117] = {.lex_state = 102, .external_lex_state = 5}, + [1118] = {.lex_state = 102, .external_lex_state = 5}, + [1119] = {.lex_state = 102, .external_lex_state = 5}, + [1120] = {.lex_state = 102, .external_lex_state = 5}, + [1121] = {.lex_state = 102, .external_lex_state = 5}, + [1122] = {.lex_state = 102, .external_lex_state = 5}, + [1123] = {.lex_state = 102, .external_lex_state = 5}, + [1124] = {.lex_state = 102, .external_lex_state = 5}, + [1125] = {.lex_state = 262, .external_lex_state = 5}, + [1126] = {.lex_state = 102, .external_lex_state = 5}, + [1127] = {.lex_state = 262, .external_lex_state = 5}, + [1128] = {.lex_state = 102, .external_lex_state = 5}, + [1129] = {.lex_state = 107, .external_lex_state = 5}, + [1130] = {.lex_state = 107, .external_lex_state = 5}, + [1131] = {.lex_state = 107, .external_lex_state = 5}, + [1132] = {.lex_state = 107, .external_lex_state = 5}, + [1133] = {.lex_state = 107, .external_lex_state = 5}, + [1134] = {.lex_state = 107, .external_lex_state = 5}, + [1135] = {.lex_state = 107, .external_lex_state = 5}, + [1136] = {.lex_state = 107, .external_lex_state = 5}, + [1137] = {.lex_state = 107, .external_lex_state = 5}, + [1138] = {.lex_state = 107, .external_lex_state = 5}, + [1139] = {.lex_state = 107, .external_lex_state = 5}, + [1140] = {.lex_state = 107, .external_lex_state = 5}, + [1141] = {.lex_state = 107, .external_lex_state = 5}, + [1142] = {.lex_state = 107, .external_lex_state = 5}, + [1143] = {.lex_state = 107, .external_lex_state = 5}, + [1144] = {.lex_state = 107, .external_lex_state = 5}, + [1145] = {.lex_state = 102, .external_lex_state = 5}, + [1146] = {.lex_state = 102, .external_lex_state = 5}, + [1147] = {.lex_state = 107, .external_lex_state = 5}, + [1148] = {.lex_state = 102, .external_lex_state = 5}, + [1149] = {.lex_state = 102, .external_lex_state = 5}, + [1150] = {.lex_state = 102, .external_lex_state = 5}, + [1151] = {.lex_state = 107, .external_lex_state = 5}, + [1152] = {.lex_state = 262, .external_lex_state = 5}, + [1153] = {.lex_state = 102, .external_lex_state = 5}, + [1154] = {.lex_state = 102, .external_lex_state = 5}, + [1155] = {.lex_state = 107, .external_lex_state = 5}, + [1156] = {.lex_state = 262, .external_lex_state = 5}, + [1157] = {.lex_state = 102, .external_lex_state = 5}, + [1158] = {.lex_state = 102, .external_lex_state = 5}, + [1159] = {.lex_state = 107, .external_lex_state = 5}, + [1160] = {.lex_state = 107, .external_lex_state = 5}, + [1161] = {.lex_state = 107, .external_lex_state = 5}, + [1162] = {.lex_state = 262, .external_lex_state = 5}, + [1163] = {.lex_state = 102, .external_lex_state = 5}, + [1164] = {.lex_state = 102, .external_lex_state = 5}, + [1165] = {.lex_state = 107, .external_lex_state = 5}, + [1166] = {.lex_state = 107, .external_lex_state = 5}, + [1167] = {.lex_state = 102, .external_lex_state = 5}, + [1168] = {.lex_state = 102, .external_lex_state = 5}, + [1169] = {.lex_state = 262, .external_lex_state = 5}, + [1170] = {.lex_state = 262, .external_lex_state = 5}, + [1171] = {.lex_state = 107, .external_lex_state = 5}, + [1172] = {.lex_state = 107, .external_lex_state = 5}, + [1173] = {.lex_state = 107, .external_lex_state = 5}, + [1174] = {.lex_state = 102, .external_lex_state = 5}, + [1175] = {.lex_state = 107, .external_lex_state = 5}, + [1176] = {.lex_state = 102, .external_lex_state = 5}, + [1177] = {.lex_state = 262, .external_lex_state = 5}, + [1178] = {.lex_state = 262, .external_lex_state = 5}, + [1179] = {.lex_state = 107, .external_lex_state = 5}, + [1180] = {.lex_state = 262, .external_lex_state = 5}, + [1181] = {.lex_state = 262, .external_lex_state = 5}, + [1182] = {.lex_state = 262, .external_lex_state = 5}, + [1183] = {.lex_state = 102, .external_lex_state = 5}, + [1184] = {.lex_state = 107, .external_lex_state = 5}, + [1185] = {.lex_state = 262, .external_lex_state = 5}, + [1186] = {.lex_state = 107, .external_lex_state = 5}, + [1187] = {.lex_state = 107, .external_lex_state = 5}, + [1188] = {.lex_state = 262, .external_lex_state = 5}, + [1189] = {.lex_state = 107, .external_lex_state = 5}, + [1190] = {.lex_state = 102, .external_lex_state = 5}, + [1191] = {.lex_state = 262, .external_lex_state = 5}, + [1192] = {.lex_state = 107, .external_lex_state = 5}, + [1193] = {.lex_state = 102, .external_lex_state = 5}, + [1194] = {.lex_state = 262, .external_lex_state = 5}, + [1195] = {.lex_state = 102, .external_lex_state = 5}, + [1196] = {.lex_state = 102, .external_lex_state = 5}, + [1197] = {.lex_state = 107, .external_lex_state = 5}, + [1198] = {.lex_state = 262, .external_lex_state = 5}, + [1199] = {.lex_state = 262, .external_lex_state = 5}, + [1200] = {.lex_state = 102, .external_lex_state = 5}, + [1201] = {.lex_state = 107, .external_lex_state = 5}, + [1202] = {.lex_state = 102, .external_lex_state = 5}, + [1203] = {.lex_state = 262, .external_lex_state = 5}, + [1204] = {.lex_state = 102, .external_lex_state = 5}, + [1205] = {.lex_state = 102, .external_lex_state = 5}, + [1206] = {.lex_state = 102, .external_lex_state = 5}, + [1207] = {.lex_state = 262, .external_lex_state = 5}, + [1208] = {.lex_state = 262, .external_lex_state = 5}, + [1209] = {.lex_state = 102, .external_lex_state = 5}, + [1210] = {.lex_state = 102, .external_lex_state = 5}, + [1211] = {.lex_state = 107, .external_lex_state = 5}, + [1212] = {.lex_state = 102, .external_lex_state = 5}, + [1213] = {.lex_state = 102, .external_lex_state = 5}, + [1214] = {.lex_state = 102, .external_lex_state = 5}, + [1215] = {.lex_state = 102, .external_lex_state = 5}, + [1216] = {.lex_state = 262, .external_lex_state = 5}, + [1217] = {.lex_state = 102, .external_lex_state = 5}, + [1218] = {.lex_state = 102, .external_lex_state = 5}, + [1219] = {.lex_state = 262, .external_lex_state = 5}, + [1220] = {.lex_state = 102, .external_lex_state = 5}, + [1221] = {.lex_state = 102, .external_lex_state = 5}, + [1222] = {.lex_state = 102, .external_lex_state = 5}, + [1223] = {.lex_state = 262, .external_lex_state = 5}, + [1224] = {.lex_state = 262, .external_lex_state = 5}, + [1225] = {.lex_state = 102, .external_lex_state = 5}, + [1226] = {.lex_state = 102, .external_lex_state = 5}, + [1227] = {.lex_state = 102, .external_lex_state = 5}, + [1228] = {.lex_state = 102, .external_lex_state = 4}, + [1229] = {.lex_state = 102, .external_lex_state = 5}, + [1230] = {.lex_state = 102, .external_lex_state = 5}, + [1231] = {.lex_state = 102, .external_lex_state = 5}, + [1232] = {.lex_state = 102, .external_lex_state = 5}, + [1233] = {.lex_state = 102, .external_lex_state = 5}, + [1234] = {.lex_state = 102, .external_lex_state = 5}, + [1235] = {.lex_state = 262, .external_lex_state = 5}, + [1236] = {.lex_state = 102, .external_lex_state = 5}, + [1237] = {.lex_state = 102, .external_lex_state = 5}, + [1238] = {.lex_state = 102, .external_lex_state = 5}, + [1239] = {.lex_state = 102, .external_lex_state = 5}, + [1240] = {.lex_state = 102, .external_lex_state = 5}, + [1241] = {.lex_state = 262, .external_lex_state = 5}, + [1242] = {.lex_state = 262, .external_lex_state = 5}, + [1243] = {.lex_state = 102, .external_lex_state = 5}, + [1244] = {.lex_state = 102, .external_lex_state = 5}, + [1245] = {.lex_state = 102, .external_lex_state = 5}, + [1246] = {.lex_state = 107, .external_lex_state = 5}, + [1247] = {.lex_state = 102, .external_lex_state = 5}, + [1248] = {.lex_state = 102, .external_lex_state = 5}, + [1249] = {.lex_state = 107, .external_lex_state = 5}, + [1250] = {.lex_state = 102, .external_lex_state = 5}, + [1251] = {.lex_state = 102, .external_lex_state = 5}, + [1252] = {.lex_state = 102, .external_lex_state = 5}, + [1253] = {.lex_state = 107, .external_lex_state = 5}, + [1254] = {.lex_state = 107, .external_lex_state = 5}, + [1255] = {.lex_state = 102, .external_lex_state = 5}, + [1256] = {.lex_state = 262, .external_lex_state = 5}, + [1257] = {.lex_state = 262, .external_lex_state = 5}, + [1258] = {.lex_state = 262, .external_lex_state = 5}, + [1259] = {.lex_state = 102, .external_lex_state = 5}, + [1260] = {.lex_state = 102, .external_lex_state = 5}, + [1261] = {.lex_state = 110, .external_lex_state = 5}, + [1262] = {.lex_state = 110, .external_lex_state = 5}, + [1263] = {.lex_state = 262, .external_lex_state = 5}, + [1264] = {.lex_state = 262, .external_lex_state = 5}, + [1265] = {.lex_state = 262, .external_lex_state = 5}, + [1266] = {.lex_state = 102, .external_lex_state = 4}, + [1267] = {.lex_state = 110, .external_lex_state = 5}, + [1268] = {.lex_state = 110, .external_lex_state = 5}, + [1269] = {.lex_state = 262, .external_lex_state = 5}, + [1270] = {.lex_state = 262, .external_lex_state = 4}, + [1271] = {.lex_state = 102, .external_lex_state = 5}, + [1272] = {.lex_state = 262, .external_lex_state = 5}, + [1273] = {.lex_state = 102, .external_lex_state = 4}, + [1274] = {.lex_state = 102, .external_lex_state = 5}, + [1275] = {.lex_state = 262, .external_lex_state = 5}, + [1276] = {.lex_state = 102, .external_lex_state = 4}, + [1277] = {.lex_state = 102, .external_lex_state = 4}, + [1278] = {.lex_state = 110, .external_lex_state = 5}, + [1279] = {.lex_state = 102, .external_lex_state = 5}, + [1280] = {.lex_state = 110, .external_lex_state = 5}, + [1281] = {.lex_state = 102, .external_lex_state = 4}, + [1282] = {.lex_state = 102, .external_lex_state = 4}, + [1283] = {.lex_state = 110, .external_lex_state = 5}, + [1284] = {.lex_state = 262, .external_lex_state = 5}, + [1285] = {.lex_state = 262, .external_lex_state = 5}, + [1286] = {.lex_state = 262, .external_lex_state = 5}, + [1287] = {.lex_state = 102, .external_lex_state = 5}, + [1288] = {.lex_state = 262, .external_lex_state = 5}, + [1289] = {.lex_state = 262, .external_lex_state = 5}, + [1290] = {.lex_state = 262, .external_lex_state = 5}, + [1291] = {.lex_state = 110, .external_lex_state = 5}, + [1292] = {.lex_state = 110, .external_lex_state = 5}, + [1293] = {.lex_state = 102, .external_lex_state = 5}, + [1294] = {.lex_state = 102, .external_lex_state = 5}, + [1295] = {.lex_state = 110, .external_lex_state = 5}, + [1296] = {.lex_state = 102, .external_lex_state = 4}, + [1297] = {.lex_state = 110, .external_lex_state = 5}, + [1298] = {.lex_state = 102, .external_lex_state = 5}, + [1299] = {.lex_state = 110, .external_lex_state = 5}, + [1300] = {.lex_state = 102, .external_lex_state = 5}, + [1301] = {.lex_state = 110, .external_lex_state = 5}, + [1302] = {.lex_state = 102, .external_lex_state = 5}, + [1303] = {.lex_state = 110, .external_lex_state = 5}, + [1304] = {.lex_state = 102, .external_lex_state = 4}, + [1305] = {.lex_state = 102, .external_lex_state = 4}, + [1306] = {.lex_state = 102, .external_lex_state = 4}, + [1307] = {.lex_state = 110, .external_lex_state = 5}, + [1308] = {.lex_state = 102, .external_lex_state = 5}, + [1309] = {.lex_state = 110, .external_lex_state = 5}, + [1310] = {.lex_state = 110, .external_lex_state = 5}, + [1311] = {.lex_state = 102, .external_lex_state = 5}, + [1312] = {.lex_state = 110, .external_lex_state = 5}, + [1313] = {.lex_state = 110, .external_lex_state = 5}, + [1314] = {.lex_state = 102, .external_lex_state = 5}, + [1315] = {.lex_state = 110, .external_lex_state = 5}, + [1316] = {.lex_state = 102, .external_lex_state = 5}, + [1317] = {.lex_state = 102, .external_lex_state = 4}, + [1318] = {.lex_state = 110, .external_lex_state = 5}, + [1319] = {.lex_state = 102, .external_lex_state = 5}, + [1320] = {.lex_state = 102, .external_lex_state = 5}, + [1321] = {.lex_state = 262, .external_lex_state = 5}, + [1322] = {.lex_state = 102, .external_lex_state = 4}, + [1323] = {.lex_state = 262, .external_lex_state = 5}, + [1324] = {.lex_state = 110, .external_lex_state = 5}, + [1325] = {.lex_state = 262, .external_lex_state = 5}, + [1326] = {.lex_state = 262, .external_lex_state = 5}, + [1327] = {.lex_state = 102, .external_lex_state = 4}, + [1328] = {.lex_state = 262, .external_lex_state = 5}, + [1329] = {.lex_state = 262, .external_lex_state = 5}, + [1330] = {.lex_state = 262, .external_lex_state = 5}, + [1331] = {.lex_state = 262, .external_lex_state = 5}, + [1332] = {.lex_state = 262, .external_lex_state = 5}, + [1333] = {.lex_state = 102, .external_lex_state = 4}, + [1334] = {.lex_state = 102, .external_lex_state = 5}, + [1335] = {.lex_state = 102, .external_lex_state = 5}, + [1336] = {.lex_state = 102, .external_lex_state = 4}, + [1337] = {.lex_state = 110, .external_lex_state = 5}, + [1338] = {.lex_state = 102, .external_lex_state = 4}, + [1339] = {.lex_state = 262, .external_lex_state = 5}, + [1340] = {.lex_state = 110, .external_lex_state = 5}, + [1341] = {.lex_state = 262, .external_lex_state = 5}, + [1342] = {.lex_state = 110, .external_lex_state = 5}, + [1343] = {.lex_state = 110, .external_lex_state = 5}, + [1344] = {.lex_state = 102, .external_lex_state = 5}, + [1345] = {.lex_state = 262, .external_lex_state = 5}, + [1346] = {.lex_state = 262, .external_lex_state = 5}, + [1347] = {.lex_state = 262, .external_lex_state = 5}, + [1348] = {.lex_state = 262, .external_lex_state = 5}, + [1349] = {.lex_state = 262, .external_lex_state = 5}, + [1350] = {.lex_state = 262, .external_lex_state = 5}, + [1351] = {.lex_state = 262, .external_lex_state = 5}, + [1352] = {.lex_state = 262, .external_lex_state = 5}, + [1353] = {.lex_state = 262, .external_lex_state = 5}, + [1354] = {.lex_state = 262, .external_lex_state = 5}, + [1355] = {.lex_state = 262, .external_lex_state = 5}, + [1356] = {.lex_state = 110, .external_lex_state = 5}, + [1357] = {.lex_state = 262, .external_lex_state = 5}, + [1358] = {.lex_state = 262, .external_lex_state = 5}, + [1359] = {.lex_state = 110, .external_lex_state = 5}, + [1360] = {.lex_state = 110, .external_lex_state = 5}, + [1361] = {.lex_state = 262, .external_lex_state = 5}, + [1362] = {.lex_state = 110, .external_lex_state = 5}, + [1363] = {.lex_state = 262, .external_lex_state = 5}, + [1364] = {.lex_state = 262, .external_lex_state = 5}, + [1365] = {.lex_state = 262, .external_lex_state = 5}, + [1366] = {.lex_state = 262, .external_lex_state = 5}, + [1367] = {.lex_state = 262, .external_lex_state = 5}, + [1368] = {.lex_state = 262, .external_lex_state = 5}, + [1369] = {.lex_state = 262, .external_lex_state = 5}, + [1370] = {.lex_state = 262, .external_lex_state = 5}, + [1371] = {.lex_state = 262, .external_lex_state = 5}, + [1372] = {.lex_state = 262, .external_lex_state = 5}, + [1373] = {.lex_state = 110, .external_lex_state = 5}, + [1374] = {.lex_state = 262, .external_lex_state = 5}, + [1375] = {.lex_state = 262, .external_lex_state = 5}, + [1376] = {.lex_state = 262, .external_lex_state = 5}, + [1377] = {.lex_state = 262, .external_lex_state = 5}, + [1378] = {.lex_state = 262, .external_lex_state = 5}, + [1379] = {.lex_state = 110, .external_lex_state = 5}, + [1380] = {.lex_state = 102, .external_lex_state = 5}, + [1381] = {.lex_state = 110, .external_lex_state = 5}, + [1382] = {.lex_state = 102, .external_lex_state = 5}, + [1383] = {.lex_state = 262, .external_lex_state = 5}, + [1384] = {.lex_state = 102, .external_lex_state = 5}, + [1385] = {.lex_state = 102, .external_lex_state = 4}, + [1386] = {.lex_state = 102, .external_lex_state = 4}, + [1387] = {.lex_state = 102, .external_lex_state = 4}, + [1388] = {.lex_state = 110, .external_lex_state = 5}, + [1389] = {.lex_state = 110, .external_lex_state = 5}, + [1390] = {.lex_state = 262, .external_lex_state = 5}, + [1391] = {.lex_state = 110, .external_lex_state = 5}, + [1392] = {.lex_state = 110, .external_lex_state = 5}, + [1393] = {.lex_state = 110, .external_lex_state = 5}, + [1394] = {.lex_state = 262, .external_lex_state = 5}, + [1395] = {.lex_state = 262, .external_lex_state = 5}, + [1396] = {.lex_state = 110, .external_lex_state = 5}, + [1397] = {.lex_state = 110, .external_lex_state = 5}, + [1398] = {.lex_state = 262, .external_lex_state = 5}, + [1399] = {.lex_state = 110, .external_lex_state = 5}, + [1400] = {.lex_state = 102, .external_lex_state = 4}, + [1401] = {.lex_state = 102, .external_lex_state = 4}, + [1402] = {.lex_state = 262, .external_lex_state = 4}, + [1403] = {.lex_state = 262, .external_lex_state = 4}, + [1404] = {.lex_state = 102, .external_lex_state = 4}, + [1405] = {.lex_state = 102, .external_lex_state = 4}, + [1406] = {.lex_state = 113, .external_lex_state = 4}, + [1407] = {.lex_state = 113, .external_lex_state = 4}, + [1408] = {.lex_state = 262, .external_lex_state = 4}, + [1409] = {.lex_state = 262, .external_lex_state = 4}, + [1410] = {.lex_state = 102, .external_lex_state = 4}, + [1411] = {.lex_state = 102, .external_lex_state = 4}, + [1412] = {.lex_state = 102, .external_lex_state = 4}, + [1413] = {.lex_state = 262, .external_lex_state = 5}, + [1414] = {.lex_state = 102, .external_lex_state = 4}, + [1415] = {.lex_state = 262, .external_lex_state = 5}, + [1416] = {.lex_state = 262, .external_lex_state = 5}, + [1417] = {.lex_state = 262, .external_lex_state = 5}, + [1418] = {.lex_state = 262, .external_lex_state = 5}, + [1419] = {.lex_state = 113, .external_lex_state = 4}, + [1420] = {.lex_state = 113, .external_lex_state = 4}, + [1421] = {.lex_state = 113, .external_lex_state = 4}, + [1422] = {.lex_state = 113, .external_lex_state = 4}, + [1423] = {.lex_state = 113, .external_lex_state = 4}, + [1424] = {.lex_state = 113, .external_lex_state = 4}, + [1425] = {.lex_state = 102, .external_lex_state = 4}, + [1426] = {.lex_state = 262, .external_lex_state = 5}, + [1427] = {.lex_state = 113, .external_lex_state = 4}, + [1428] = {.lex_state = 262, .external_lex_state = 5}, + [1429] = {.lex_state = 262, .external_lex_state = 5}, + [1430] = {.lex_state = 262, .external_lex_state = 5}, + [1431] = {.lex_state = 102, .external_lex_state = 4}, + [1432] = {.lex_state = 102, .external_lex_state = 4}, + [1433] = {.lex_state = 102, .external_lex_state = 4}, + [1434] = {.lex_state = 102, .external_lex_state = 4}, + [1435] = {.lex_state = 102, .external_lex_state = 4}, + [1436] = {.lex_state = 102, .external_lex_state = 4}, + [1437] = {.lex_state = 262, .external_lex_state = 5}, + [1438] = {.lex_state = 262, .external_lex_state = 4}, + [1439] = {.lex_state = 262, .external_lex_state = 4}, + [1440] = {.lex_state = 262, .external_lex_state = 5}, + [1441] = {.lex_state = 262, .external_lex_state = 5}, + [1442] = {.lex_state = 262, .external_lex_state = 5}, + [1443] = {.lex_state = 102, .external_lex_state = 4}, + [1444] = {.lex_state = 102, .external_lex_state = 4}, + [1445] = {.lex_state = 102, .external_lex_state = 4}, + [1446] = {.lex_state = 102, .external_lex_state = 4}, + [1447] = {.lex_state = 102, .external_lex_state = 4}, + [1448] = {.lex_state = 113, .external_lex_state = 4}, + [1449] = {.lex_state = 102, .external_lex_state = 4}, + [1450] = {.lex_state = 113, .external_lex_state = 4}, + [1451] = {.lex_state = 113, .external_lex_state = 4}, + [1452] = {.lex_state = 113, .external_lex_state = 4}, + [1453] = {.lex_state = 113, .external_lex_state = 4}, + [1454] = {.lex_state = 113, .external_lex_state = 4}, + [1455] = {.lex_state = 113, .external_lex_state = 4}, + [1456] = {.lex_state = 113, .external_lex_state = 4}, + [1457] = {.lex_state = 113, .external_lex_state = 4}, + [1458] = {.lex_state = 113, .external_lex_state = 4}, + [1459] = {.lex_state = 113, .external_lex_state = 4}, + [1460] = {.lex_state = 113, .external_lex_state = 4}, + [1461] = {.lex_state = 113, .external_lex_state = 4}, + [1462] = {.lex_state = 113, .external_lex_state = 4}, + [1463] = {.lex_state = 113, .external_lex_state = 4}, + [1464] = {.lex_state = 113, .external_lex_state = 4}, + [1465] = {.lex_state = 113, .external_lex_state = 4}, + [1466] = {.lex_state = 113, .external_lex_state = 4}, + [1467] = {.lex_state = 113, .external_lex_state = 4}, + [1468] = {.lex_state = 113, .external_lex_state = 4}, + [1469] = {.lex_state = 113, .external_lex_state = 4}, + [1470] = {.lex_state = 102, .external_lex_state = 4}, + [1471] = {.lex_state = 113, .external_lex_state = 4}, + [1472] = {.lex_state = 113, .external_lex_state = 4}, + [1473] = {.lex_state = 113, .external_lex_state = 4}, + [1474] = {.lex_state = 262, .external_lex_state = 5}, + [1475] = {.lex_state = 262, .external_lex_state = 4}, + [1476] = {.lex_state = 102, .external_lex_state = 4}, + [1477] = {.lex_state = 262, .external_lex_state = 5}, + [1478] = {.lex_state = 102, .external_lex_state = 4}, + [1479] = {.lex_state = 113, .external_lex_state = 4}, + [1480] = {.lex_state = 102, .external_lex_state = 4}, + [1481] = {.lex_state = 102, .external_lex_state = 4}, + [1482] = {.lex_state = 113, .external_lex_state = 4}, + [1483] = {.lex_state = 113, .external_lex_state = 4}, + [1484] = {.lex_state = 262, .external_lex_state = 4}, + [1485] = {.lex_state = 262, .external_lex_state = 4}, + [1486] = {.lex_state = 102, .external_lex_state = 4}, + [1487] = {.lex_state = 102, .external_lex_state = 4}, + [1488] = {.lex_state = 262, .external_lex_state = 5}, + [1489] = {.lex_state = 102, .external_lex_state = 4}, + [1490] = {.lex_state = 113, .external_lex_state = 4}, + [1491] = {.lex_state = 102, .external_lex_state = 4}, + [1492] = {.lex_state = 262, .external_lex_state = 5}, + [1493] = {.lex_state = 262, .external_lex_state = 5}, + [1494] = {.lex_state = 102, .external_lex_state = 4}, + [1495] = {.lex_state = 113, .external_lex_state = 4}, + [1496] = {.lex_state = 113, .external_lex_state = 4}, + [1497] = {.lex_state = 102, .external_lex_state = 4}, + [1498] = {.lex_state = 113, .external_lex_state = 4}, + [1499] = {.lex_state = 113, .external_lex_state = 4}, + [1500] = {.lex_state = 102, .external_lex_state = 4}, + [1501] = {.lex_state = 102, .external_lex_state = 4}, + [1502] = {.lex_state = 262, .external_lex_state = 5}, + [1503] = {.lex_state = 102, .external_lex_state = 4}, + [1504] = {.lex_state = 102, .external_lex_state = 4}, + [1505] = {.lex_state = 102, .external_lex_state = 4}, + [1506] = {.lex_state = 102, .external_lex_state = 4}, + [1507] = {.lex_state = 262, .external_lex_state = 5}, + [1508] = {.lex_state = 262, .external_lex_state = 4}, + [1509] = {.lex_state = 262, .external_lex_state = 5}, + [1510] = {.lex_state = 262, .external_lex_state = 5}, + [1511] = {.lex_state = 262, .external_lex_state = 4}, + [1512] = {.lex_state = 102, .external_lex_state = 4}, + [1513] = {.lex_state = 262, .external_lex_state = 5}, + [1514] = {.lex_state = 102, .external_lex_state = 4}, + [1515] = {.lex_state = 262, .external_lex_state = 4}, + [1516] = {.lex_state = 262, .external_lex_state = 4}, + [1517] = {.lex_state = 102, .external_lex_state = 4}, + [1518] = {.lex_state = 102, .external_lex_state = 4}, + [1519] = {.lex_state = 262, .external_lex_state = 5}, + [1520] = {.lex_state = 102, .external_lex_state = 4}, + [1521] = {.lex_state = 102, .external_lex_state = 4}, + [1522] = {.lex_state = 262, .external_lex_state = 4}, + [1523] = {.lex_state = 102, .external_lex_state = 4}, + [1524] = {.lex_state = 262, .external_lex_state = 5}, + [1525] = {.lex_state = 262, .external_lex_state = 5}, + [1526] = {.lex_state = 102, .external_lex_state = 4}, + [1527] = {.lex_state = 102, .external_lex_state = 4}, + [1528] = {.lex_state = 102, .external_lex_state = 4}, + [1529] = {.lex_state = 102, .external_lex_state = 4}, + [1530] = {.lex_state = 102, .external_lex_state = 4}, + [1531] = {.lex_state = 102, .external_lex_state = 4}, + [1532] = {.lex_state = 262, .external_lex_state = 4}, + [1533] = {.lex_state = 262, .external_lex_state = 4}, + [1534] = {.lex_state = 262, .external_lex_state = 4}, + [1535] = {.lex_state = 262, .external_lex_state = 4}, + [1536] = {.lex_state = 262, .external_lex_state = 4}, + [1537] = {.lex_state = 262, .external_lex_state = 4}, + [1538] = {.lex_state = 262, .external_lex_state = 4}, + [1539] = {.lex_state = 102, .external_lex_state = 4}, + [1540] = {.lex_state = 262, .external_lex_state = 5}, + [1541] = {.lex_state = 262, .external_lex_state = 5}, + [1542] = {.lex_state = 102, .external_lex_state = 4}, + [1543] = {.lex_state = 102, .external_lex_state = 4}, + [1544] = {.lex_state = 102, .external_lex_state = 4}, + [1545] = {.lex_state = 102, .external_lex_state = 4}, + [1546] = {.lex_state = 102, .external_lex_state = 4}, + [1547] = {.lex_state = 102, .external_lex_state = 4}, + [1548] = {.lex_state = 102, .external_lex_state = 4}, + [1549] = {.lex_state = 264, .external_lex_state = 5}, + [1550] = {.lex_state = 262, .external_lex_state = 4}, + [1551] = {.lex_state = 102, .external_lex_state = 4}, + [1552] = {.lex_state = 102, .external_lex_state = 4}, + [1553] = {.lex_state = 262, .external_lex_state = 4}, + [1554] = {.lex_state = 102, .external_lex_state = 4}, + [1555] = {.lex_state = 262, .external_lex_state = 4}, + [1556] = {.lex_state = 102, .external_lex_state = 4}, + [1557] = {.lex_state = 262, .external_lex_state = 4}, + [1558] = {.lex_state = 262, .external_lex_state = 4}, + [1559] = {.lex_state = 118, .external_lex_state = 4}, + [1560] = {.lex_state = 102, .external_lex_state = 4}, + [1561] = {.lex_state = 262, .external_lex_state = 5}, + [1562] = {.lex_state = 262, .external_lex_state = 5}, + [1563] = {.lex_state = 262, .external_lex_state = 5}, + [1564] = {.lex_state = 262, .external_lex_state = 5}, + [1565] = {.lex_state = 264, .external_lex_state = 5}, + [1566] = {.lex_state = 264, .external_lex_state = 5}, + [1567] = {.lex_state = 102, .external_lex_state = 4}, + [1568] = {.lex_state = 264, .external_lex_state = 5}, + [1569] = {.lex_state = 264, .external_lex_state = 5}, + [1570] = {.lex_state = 264, .external_lex_state = 5}, + [1571] = {.lex_state = 264, .external_lex_state = 5}, + [1572] = {.lex_state = 264, .external_lex_state = 5}, + [1573] = {.lex_state = 264, .external_lex_state = 5}, + [1574] = {.lex_state = 264, .external_lex_state = 5}, + [1575] = {.lex_state = 262, .external_lex_state = 4}, + [1576] = {.lex_state = 262, .external_lex_state = 4}, + [1577] = {.lex_state = 262, .external_lex_state = 4}, + [1578] = {.lex_state = 262, .external_lex_state = 4}, + [1579] = {.lex_state = 118, .external_lex_state = 4}, + [1580] = {.lex_state = 118, .external_lex_state = 4}, + [1581] = {.lex_state = 102, .external_lex_state = 4}, + [1582] = {.lex_state = 264, .external_lex_state = 5}, + [1583] = {.lex_state = 264, .external_lex_state = 5}, + [1584] = {.lex_state = 264, .external_lex_state = 5}, + [1585] = {.lex_state = 262, .external_lex_state = 5}, + [1586] = {.lex_state = 264, .external_lex_state = 5}, + [1587] = {.lex_state = 264, .external_lex_state = 5}, + [1588] = {.lex_state = 264, .external_lex_state = 5}, + [1589] = {.lex_state = 118, .external_lex_state = 4}, + [1590] = {.lex_state = 118, .external_lex_state = 4}, + [1591] = {.lex_state = 118, .external_lex_state = 4}, + [1592] = {.lex_state = 118, .external_lex_state = 4}, + [1593] = {.lex_state = 118, .external_lex_state = 4}, + [1594] = {.lex_state = 118, .external_lex_state = 4}, + [1595] = {.lex_state = 118, .external_lex_state = 4}, + [1596] = {.lex_state = 118, .external_lex_state = 4}, + [1597] = {.lex_state = 118, .external_lex_state = 4}, + [1598] = {.lex_state = 118, .external_lex_state = 4}, + [1599] = {.lex_state = 118, .external_lex_state = 4}, + [1600] = {.lex_state = 118, .external_lex_state = 4}, + [1601] = {.lex_state = 118, .external_lex_state = 4}, + [1602] = {.lex_state = 118, .external_lex_state = 4}, + [1603] = {.lex_state = 118, .external_lex_state = 4}, + [1604] = {.lex_state = 118, .external_lex_state = 4}, + [1605] = {.lex_state = 118, .external_lex_state = 4}, + [1606] = {.lex_state = 118, .external_lex_state = 4}, + [1607] = {.lex_state = 118, .external_lex_state = 4}, + [1608] = {.lex_state = 118, .external_lex_state = 4}, + [1609] = {.lex_state = 264, .external_lex_state = 5}, + [1610] = {.lex_state = 118, .external_lex_state = 4}, + [1611] = {.lex_state = 262, .external_lex_state = 5}, + [1612] = {.lex_state = 118, .external_lex_state = 4}, + [1613] = {.lex_state = 118, .external_lex_state = 4}, + [1614] = {.lex_state = 118, .external_lex_state = 4}, + [1615] = {.lex_state = 118, .external_lex_state = 4}, + [1616] = {.lex_state = 118, .external_lex_state = 4}, + [1617] = {.lex_state = 118, .external_lex_state = 4}, + [1618] = {.lex_state = 118, .external_lex_state = 4}, + [1619] = {.lex_state = 262, .external_lex_state = 5}, + [1620] = {.lex_state = 262, .external_lex_state = 5}, + [1621] = {.lex_state = 118, .external_lex_state = 4}, + [1622] = {.lex_state = 118, .external_lex_state = 4}, + [1623] = {.lex_state = 118, .external_lex_state = 4}, + [1624] = {.lex_state = 118, .external_lex_state = 4}, + [1625] = {.lex_state = 262, .external_lex_state = 5}, + [1626] = {.lex_state = 262, .external_lex_state = 5}, + [1627] = {.lex_state = 118, .external_lex_state = 4}, + [1628] = {.lex_state = 262, .external_lex_state = 5}, + [1629] = {.lex_state = 262, .external_lex_state = 5}, + [1630] = {.lex_state = 118, .external_lex_state = 4}, + [1631] = {.lex_state = 264, .external_lex_state = 5}, + [1632] = {.lex_state = 264, .external_lex_state = 5}, + [1633] = {.lex_state = 264, .external_lex_state = 5}, + [1634] = {.lex_state = 264, .external_lex_state = 5}, + [1635] = {.lex_state = 102, .external_lex_state = 4}, + [1636] = {.lex_state = 102, .external_lex_state = 4}, + [1637] = {.lex_state = 102, .external_lex_state = 4}, + [1638] = {.lex_state = 264, .external_lex_state = 5}, + [1639] = {.lex_state = 262, .external_lex_state = 4}, + [1640] = {.lex_state = 262, .external_lex_state = 4}, + [1641] = {.lex_state = 262, .external_lex_state = 4}, + [1642] = {.lex_state = 262, .external_lex_state = 4}, + [1643] = {.lex_state = 264, .external_lex_state = 5}, + [1644] = {.lex_state = 264, .external_lex_state = 5}, + [1645] = {.lex_state = 264, .external_lex_state = 5}, + [1646] = {.lex_state = 264, .external_lex_state = 5}, + [1647] = {.lex_state = 102, .external_lex_state = 4}, + [1648] = {.lex_state = 102, .external_lex_state = 4}, + [1649] = {.lex_state = 262, .external_lex_state = 4}, + [1650] = {.lex_state = 262, .external_lex_state = 4}, + [1651] = {.lex_state = 262, .external_lex_state = 4}, + [1652] = {.lex_state = 262, .external_lex_state = 4}, + [1653] = {.lex_state = 264, .external_lex_state = 5}, + [1654] = {.lex_state = 102, .external_lex_state = 4}, + [1655] = {.lex_state = 262, .external_lex_state = 4}, + [1656] = {.lex_state = 264, .external_lex_state = 5}, + [1657] = {.lex_state = 264, .external_lex_state = 5}, + [1658] = {.lex_state = 102, .external_lex_state = 4}, + [1659] = {.lex_state = 262, .external_lex_state = 5}, + [1660] = {.lex_state = 102, .external_lex_state = 4}, + [1661] = {.lex_state = 102, .external_lex_state = 4}, + [1662] = {.lex_state = 102, .external_lex_state = 4}, + [1663] = {.lex_state = 102, .external_lex_state = 4}, + [1664] = {.lex_state = 264, .external_lex_state = 5}, + [1665] = {.lex_state = 264, .external_lex_state = 5}, + [1666] = {.lex_state = 264, .external_lex_state = 5}, + [1667] = {.lex_state = 262, .external_lex_state = 4}, + [1668] = {.lex_state = 102, .external_lex_state = 4}, + [1669] = {.lex_state = 102, .external_lex_state = 4}, + [1670] = {.lex_state = 262, .external_lex_state = 4}, + [1671] = {.lex_state = 102, .external_lex_state = 4}, + [1672] = {.lex_state = 262, .external_lex_state = 4}, + [1673] = {.lex_state = 262, .external_lex_state = 4}, + [1674] = {.lex_state = 118, .external_lex_state = 4}, + [1675] = {.lex_state = 262, .external_lex_state = 4}, + [1676] = {.lex_state = 262, .external_lex_state = 4}, + [1677] = {.lex_state = 262, .external_lex_state = 4}, + [1678] = {.lex_state = 262, .external_lex_state = 4}, + [1679] = {.lex_state = 262, .external_lex_state = 4}, + [1680] = {.lex_state = 262, .external_lex_state = 4}, + [1681] = {.lex_state = 102, .external_lex_state = 4}, + [1682] = {.lex_state = 262, .external_lex_state = 4}, + [1683] = {.lex_state = 262, .external_lex_state = 4}, + [1684] = {.lex_state = 262, .external_lex_state = 4}, + [1685] = {.lex_state = 262, .external_lex_state = 5}, + [1686] = {.lex_state = 262, .external_lex_state = 4}, + [1687] = {.lex_state = 262, .external_lex_state = 4}, + [1688] = {.lex_state = 262, .external_lex_state = 4}, + [1689] = {.lex_state = 262, .external_lex_state = 4}, + [1690] = {.lex_state = 262, .external_lex_state = 4}, + [1691] = {.lex_state = 262, .external_lex_state = 4}, + [1692] = {.lex_state = 262, .external_lex_state = 4}, + [1693] = {.lex_state = 262, .external_lex_state = 4}, + [1694] = {.lex_state = 118, .external_lex_state = 4}, + [1695] = {.lex_state = 102, .external_lex_state = 4}, + [1696] = {.lex_state = 262, .external_lex_state = 5}, + [1697] = {.lex_state = 262, .external_lex_state = 5}, + [1698] = {.lex_state = 262, .external_lex_state = 5}, + [1699] = {.lex_state = 118, .external_lex_state = 4}, + [1700] = {.lex_state = 262, .external_lex_state = 4}, + [1701] = {.lex_state = 118, .external_lex_state = 4}, + [1702] = {.lex_state = 264, .external_lex_state = 5}, + [1703] = {.lex_state = 264, .external_lex_state = 5}, + [1704] = {.lex_state = 262, .external_lex_state = 4}, + [1705] = {.lex_state = 262, .external_lex_state = 4}, + [1706] = {.lex_state = 262, .external_lex_state = 4}, + [1707] = {.lex_state = 102, .external_lex_state = 4}, + [1708] = {.lex_state = 102, .external_lex_state = 4}, + [1709] = {.lex_state = 102, .external_lex_state = 4}, + [1710] = {.lex_state = 102, .external_lex_state = 4}, + [1711] = {.lex_state = 262, .external_lex_state = 4}, + [1712] = {.lex_state = 262, .external_lex_state = 4}, + [1713] = {.lex_state = 102, .external_lex_state = 4}, + [1714] = {.lex_state = 262, .external_lex_state = 5}, + [1715] = {.lex_state = 262, .external_lex_state = 5}, + [1716] = {.lex_state = 102, .external_lex_state = 4}, + [1717] = {.lex_state = 262, .external_lex_state = 4}, + [1718] = {.lex_state = 102, .external_lex_state = 4}, + [1719] = {.lex_state = 102, .external_lex_state = 4}, + [1720] = {.lex_state = 102, .external_lex_state = 4}, + [1721] = {.lex_state = 102, .external_lex_state = 4}, + [1722] = {.lex_state = 262, .external_lex_state = 4}, + [1723] = {.lex_state = 102, .external_lex_state = 4}, + [1724] = {.lex_state = 102, .external_lex_state = 4}, + [1725] = {.lex_state = 102, .external_lex_state = 4}, + [1726] = {.lex_state = 264, .external_lex_state = 5}, + [1727] = {.lex_state = 262, .external_lex_state = 5}, + [1728] = {.lex_state = 262, .external_lex_state = 5}, + [1729] = {.lex_state = 262, .external_lex_state = 4}, + [1730] = {.lex_state = 264, .external_lex_state = 5}, + [1731] = {.lex_state = 262, .external_lex_state = 5}, + [1732] = {.lex_state = 262, .external_lex_state = 5}, + [1733] = {.lex_state = 262, .external_lex_state = 4}, + [1734] = {.lex_state = 262, .external_lex_state = 5}, + [1735] = {.lex_state = 262, .external_lex_state = 5}, + [1736] = {.lex_state = 262, .external_lex_state = 4}, + [1737] = {.lex_state = 102, .external_lex_state = 4}, + [1738] = {.lex_state = 102, .external_lex_state = 4}, + [1739] = {.lex_state = 102, .external_lex_state = 4}, + [1740] = {.lex_state = 102, .external_lex_state = 4}, + [1741] = {.lex_state = 102, .external_lex_state = 4}, + [1742] = {.lex_state = 102, .external_lex_state = 4}, + [1743] = {.lex_state = 102, .external_lex_state = 4}, + [1744] = {.lex_state = 102, .external_lex_state = 4}, + [1745] = {.lex_state = 102, .external_lex_state = 4}, + [1746] = {.lex_state = 102, .external_lex_state = 4}, + [1747] = {.lex_state = 102, .external_lex_state = 4}, + [1748] = {.lex_state = 102, .external_lex_state = 4}, + [1749] = {.lex_state = 262, .external_lex_state = 5}, + [1750] = {.lex_state = 264, .external_lex_state = 5}, + [1751] = {.lex_state = 102, .external_lex_state = 4}, + [1752] = {.lex_state = 102, .external_lex_state = 4}, + [1753] = {.lex_state = 102, .external_lex_state = 4}, + [1754] = {.lex_state = 262, .external_lex_state = 4}, + [1755] = {.lex_state = 264, .external_lex_state = 5}, + [1756] = {.lex_state = 264, .external_lex_state = 5}, + [1757] = {.lex_state = 264, .external_lex_state = 5}, + [1758] = {.lex_state = 102, .external_lex_state = 4}, + [1759] = {.lex_state = 262, .external_lex_state = 4}, + [1760] = {.lex_state = 102, .external_lex_state = 4}, + [1761] = {.lex_state = 102, .external_lex_state = 4}, + [1762] = {.lex_state = 264, .external_lex_state = 5}, + [1763] = {.lex_state = 262, .external_lex_state = 4}, + [1764] = {.lex_state = 102, .external_lex_state = 4}, + [1765] = {.lex_state = 262, .external_lex_state = 5}, + [1766] = {.lex_state = 262, .external_lex_state = 4}, + [1767] = {.lex_state = 102, .external_lex_state = 4}, + [1768] = {.lex_state = 102, .external_lex_state = 4}, + [1769] = {.lex_state = 121, .external_lex_state = 5}, + [1770] = {.lex_state = 262, .external_lex_state = 5}, + [1771] = {.lex_state = 121, .external_lex_state = 5}, + [1772] = {.lex_state = 262, .external_lex_state = 5}, + [1773] = {.lex_state = 262, .external_lex_state = 5}, + [1774] = {.lex_state = 262, .external_lex_state = 5}, + [1775] = {.lex_state = 262, .external_lex_state = 5}, + [1776] = {.lex_state = 262, .external_lex_state = 5}, + [1777] = {.lex_state = 262, .external_lex_state = 5}, + [1778] = {.lex_state = 121, .external_lex_state = 5}, + [1779] = {.lex_state = 262, .external_lex_state = 5}, + [1780] = {.lex_state = 262, .external_lex_state = 5}, + [1781] = {.lex_state = 262, .external_lex_state = 5}, + [1782] = {.lex_state = 262, .external_lex_state = 5}, + [1783] = {.lex_state = 121, .external_lex_state = 5}, + [1784] = {.lex_state = 262, .external_lex_state = 5}, + [1785] = {.lex_state = 121, .external_lex_state = 5}, + [1786] = {.lex_state = 121, .external_lex_state = 5}, + [1787] = {.lex_state = 262, .external_lex_state = 5}, + [1788] = {.lex_state = 262, .external_lex_state = 5}, + [1789] = {.lex_state = 262, .external_lex_state = 5}, + [1790] = {.lex_state = 262, .external_lex_state = 5}, + [1791] = {.lex_state = 121, .external_lex_state = 5}, + [1792] = {.lex_state = 121, .external_lex_state = 5}, + [1793] = {.lex_state = 262, .external_lex_state = 5}, + [1794] = {.lex_state = 262, .external_lex_state = 5}, + [1795] = {.lex_state = 121, .external_lex_state = 5}, + [1796] = {.lex_state = 121, .external_lex_state = 5}, + [1797] = {.lex_state = 121, .external_lex_state = 5}, + [1798] = {.lex_state = 121, .external_lex_state = 5}, + [1799] = {.lex_state = 121, .external_lex_state = 5}, + [1800] = {.lex_state = 121, .external_lex_state = 5}, + [1801] = {.lex_state = 262, .external_lex_state = 5}, + [1802] = {.lex_state = 121, .external_lex_state = 5}, + [1803] = {.lex_state = 121, .external_lex_state = 5}, + [1804] = {.lex_state = 121, .external_lex_state = 5}, + [1805] = {.lex_state = 262, .external_lex_state = 5}, + [1806] = {.lex_state = 121, .external_lex_state = 5}, + [1807] = {.lex_state = 262, .external_lex_state = 5}, + [1808] = {.lex_state = 262, .external_lex_state = 5}, + [1809] = {.lex_state = 262, .external_lex_state = 5}, + [1810] = {.lex_state = 262, .external_lex_state = 5}, + [1811] = {.lex_state = 262, .external_lex_state = 5}, + [1812] = {.lex_state = 121, .external_lex_state = 5}, + [1813] = {.lex_state = 262, .external_lex_state = 4}, + [1814] = {.lex_state = 121, .external_lex_state = 5}, + [1815] = {.lex_state = 121, .external_lex_state = 5}, + [1816] = {.lex_state = 262, .external_lex_state = 5}, + [1817] = {.lex_state = 262, .external_lex_state = 5}, + [1818] = {.lex_state = 262, .external_lex_state = 5}, + [1819] = {.lex_state = 262, .external_lex_state = 5}, + [1820] = {.lex_state = 121, .external_lex_state = 5}, + [1821] = {.lex_state = 262, .external_lex_state = 5}, + [1822] = {.lex_state = 262, .external_lex_state = 5}, + [1823] = {.lex_state = 262, .external_lex_state = 5}, + [1824] = {.lex_state = 262, .external_lex_state = 4}, + [1825] = {.lex_state = 262, .external_lex_state = 4}, + [1826] = {.lex_state = 121, .external_lex_state = 5}, + [1827] = {.lex_state = 262, .external_lex_state = 5}, + [1828] = {.lex_state = 121, .external_lex_state = 5}, + [1829] = {.lex_state = 121, .external_lex_state = 5}, + [1830] = {.lex_state = 262, .external_lex_state = 5}, + [1831] = {.lex_state = 121, .external_lex_state = 5}, + [1832] = {.lex_state = 262, .external_lex_state = 5}, + [1833] = {.lex_state = 121, .external_lex_state = 5}, + [1834] = {.lex_state = 121, .external_lex_state = 5}, + [1835] = {.lex_state = 121, .external_lex_state = 5}, + [1836] = {.lex_state = 121, .external_lex_state = 5}, + [1837] = {.lex_state = 121, .external_lex_state = 5}, + [1838] = {.lex_state = 121, .external_lex_state = 5}, + [1839] = {.lex_state = 121, .external_lex_state = 5}, + [1840] = {.lex_state = 262, .external_lex_state = 5}, + [1841] = {.lex_state = 121, .external_lex_state = 5}, + [1842] = {.lex_state = 121, .external_lex_state = 5}, + [1843] = {.lex_state = 262, .external_lex_state = 5}, + [1844] = {.lex_state = 262, .external_lex_state = 5}, + [1845] = {.lex_state = 121, .external_lex_state = 5}, + [1846] = {.lex_state = 121, .external_lex_state = 5}, + [1847] = {.lex_state = 262, .external_lex_state = 5}, + [1848] = {.lex_state = 262, .external_lex_state = 5}, + [1849] = {.lex_state = 262, .external_lex_state = 5}, + [1850] = {.lex_state = 262, .external_lex_state = 5}, + [1851] = {.lex_state = 262, .external_lex_state = 5}, + [1852] = {.lex_state = 121, .external_lex_state = 5}, + [1853] = {.lex_state = 262, .external_lex_state = 5}, + [1854] = {.lex_state = 121, .external_lex_state = 5}, + [1855] = {.lex_state = 121, .external_lex_state = 5}, + [1856] = {.lex_state = 262, .external_lex_state = 5}, + [1857] = {.lex_state = 102, .external_lex_state = 5}, + [1858] = {.lex_state = 102, .external_lex_state = 5}, + [1859] = {.lex_state = 102, .external_lex_state = 5}, + [1860] = {.lex_state = 262, .external_lex_state = 4}, + [1861] = {.lex_state = 262, .external_lex_state = 4}, + [1862] = {.lex_state = 102, .external_lex_state = 5}, + [1863] = {.lex_state = 262, .external_lex_state = 5}, + [1864] = {.lex_state = 121, .external_lex_state = 5}, + [1865] = {.lex_state = 102, .external_lex_state = 5}, + [1866] = {.lex_state = 262, .external_lex_state = 5}, + [1867] = {.lex_state = 262, .external_lex_state = 5}, + [1868] = {.lex_state = 262, .external_lex_state = 5}, + [1869] = {.lex_state = 262, .external_lex_state = 5}, + [1870] = {.lex_state = 262, .external_lex_state = 5}, + [1871] = {.lex_state = 262, .external_lex_state = 4}, + [1872] = {.lex_state = 102, .external_lex_state = 5}, + [1873] = {.lex_state = 262, .external_lex_state = 5}, + [1874] = {.lex_state = 262, .external_lex_state = 5}, + [1875] = {.lex_state = 262, .external_lex_state = 5}, + [1876] = {.lex_state = 262, .external_lex_state = 5}, + [1877] = {.lex_state = 262, .external_lex_state = 5}, + [1878] = {.lex_state = 262, .external_lex_state = 5}, + [1879] = {.lex_state = 262, .external_lex_state = 5}, + [1880] = {.lex_state = 102, .external_lex_state = 5}, + [1881] = {.lex_state = 262, .external_lex_state = 5}, + [1882] = {.lex_state = 262, .external_lex_state = 5}, + [1883] = {.lex_state = 262, .external_lex_state = 5}, + [1884] = {.lex_state = 262, .external_lex_state = 5}, + [1885] = {.lex_state = 262, .external_lex_state = 5}, + [1886] = {.lex_state = 102, .external_lex_state = 5}, + [1887] = {.lex_state = 102, .external_lex_state = 5}, + [1888] = {.lex_state = 262, .external_lex_state = 4}, + [1889] = {.lex_state = 262, .external_lex_state = 4}, + [1890] = {.lex_state = 262, .external_lex_state = 4}, + [1891] = {.lex_state = 262, .external_lex_state = 5}, + [1892] = {.lex_state = 262, .external_lex_state = 4}, + [1893] = {.lex_state = 262, .external_lex_state = 4}, + [1894] = {.lex_state = 262, .external_lex_state = 4}, + [1895] = {.lex_state = 262, .external_lex_state = 4}, + [1896] = {.lex_state = 262, .external_lex_state = 4}, + [1897] = {.lex_state = 262, .external_lex_state = 4}, + [1898] = {.lex_state = 102, .external_lex_state = 5}, + [1899] = {.lex_state = 102, .external_lex_state = 5}, + [1900] = {.lex_state = 262, .external_lex_state = 4}, + [1901] = {.lex_state = 262, .external_lex_state = 4}, + [1902] = {.lex_state = 262, .external_lex_state = 5}, + [1903] = {.lex_state = 262, .external_lex_state = 5}, + [1904] = {.lex_state = 262, .external_lex_state = 4}, + [1905] = {.lex_state = 262, .external_lex_state = 5}, + [1906] = {.lex_state = 262, .external_lex_state = 4}, + [1907] = {.lex_state = 262, .external_lex_state = 4}, + [1908] = {.lex_state = 262, .external_lex_state = 4}, + [1909] = {.lex_state = 262, .external_lex_state = 4}, + [1910] = {.lex_state = 262, .external_lex_state = 4}, + [1911] = {.lex_state = 262, .external_lex_state = 5}, + [1912] = {.lex_state = 102, .external_lex_state = 5}, + [1913] = {.lex_state = 266, .external_lex_state = 4}, + [1914] = {.lex_state = 102, .external_lex_state = 5}, + [1915] = {.lex_state = 262, .external_lex_state = 5}, + [1916] = {.lex_state = 126, .external_lex_state = 5}, + [1917] = {.lex_state = 126, .external_lex_state = 5}, + [1918] = {.lex_state = 262, .external_lex_state = 5}, + [1919] = {.lex_state = 121, .external_lex_state = 5}, + [1920] = {.lex_state = 121, .external_lex_state = 5}, + [1921] = {.lex_state = 129, .external_lex_state = 5}, + [1922] = {.lex_state = 102, .external_lex_state = 5}, + [1923] = {.lex_state = 126, .external_lex_state = 5}, + [1924] = {.lex_state = 262, .external_lex_state = 5}, + [1925] = {.lex_state = 262, .external_lex_state = 5}, + [1926] = {.lex_state = 262, .external_lex_state = 5}, + [1927] = {.lex_state = 126, .external_lex_state = 5}, + [1928] = {.lex_state = 121, .external_lex_state = 5}, + [1929] = {.lex_state = 121, .external_lex_state = 5}, + [1930] = {.lex_state = 126, .external_lex_state = 5}, + [1931] = {.lex_state = 126, .external_lex_state = 5}, + [1932] = {.lex_state = 126, .external_lex_state = 5}, + [1933] = {.lex_state = 126, .external_lex_state = 5}, + [1934] = {.lex_state = 126, .external_lex_state = 5}, + [1935] = {.lex_state = 262, .external_lex_state = 5}, + [1936] = {.lex_state = 126, .external_lex_state = 5}, + [1937] = {.lex_state = 262, .external_lex_state = 5}, + [1938] = {.lex_state = 262, .external_lex_state = 5}, + [1939] = {.lex_state = 262, .external_lex_state = 5}, + [1940] = {.lex_state = 126, .external_lex_state = 5}, + [1941] = {.lex_state = 126, .external_lex_state = 5}, + [1942] = {.lex_state = 126, .external_lex_state = 5}, + [1943] = {.lex_state = 126, .external_lex_state = 5}, + [1944] = {.lex_state = 262, .external_lex_state = 5}, + [1945] = {.lex_state = 262, .external_lex_state = 5}, + [1946] = {.lex_state = 262, .external_lex_state = 5}, + [1947] = {.lex_state = 262, .external_lex_state = 5}, + [1948] = {.lex_state = 262, .external_lex_state = 5}, + [1949] = {.lex_state = 262, .external_lex_state = 5}, + [1950] = {.lex_state = 262, .external_lex_state = 5}, + [1951] = {.lex_state = 262, .external_lex_state = 5}, + [1952] = {.lex_state = 262, .external_lex_state = 5}, + [1953] = {.lex_state = 262, .external_lex_state = 5}, + [1954] = {.lex_state = 262, .external_lex_state = 5}, + [1955] = {.lex_state = 262, .external_lex_state = 5}, + [1956] = {.lex_state = 262, .external_lex_state = 5}, + [1957] = {.lex_state = 262, .external_lex_state = 5}, + [1958] = {.lex_state = 102, .external_lex_state = 5}, + [1959] = {.lex_state = 262, .external_lex_state = 5}, + [1960] = {.lex_state = 126, .external_lex_state = 5}, + [1961] = {.lex_state = 102, .external_lex_state = 5}, + [1962] = {.lex_state = 129, .external_lex_state = 5}, + [1963] = {.lex_state = 126, .external_lex_state = 5}, + [1964] = {.lex_state = 126, .external_lex_state = 5}, + [1965] = {.lex_state = 126, .external_lex_state = 5}, + [1966] = {.lex_state = 129, .external_lex_state = 5}, + [1967] = {.lex_state = 126, .external_lex_state = 5}, + [1968] = {.lex_state = 126, .external_lex_state = 5}, + [1969] = {.lex_state = 126, .external_lex_state = 5}, + [1970] = {.lex_state = 126, .external_lex_state = 5}, + [1971] = {.lex_state = 126, .external_lex_state = 5}, + [1972] = {.lex_state = 264, .external_lex_state = 5}, + [1973] = {.lex_state = 264, .external_lex_state = 5}, + [1974] = {.lex_state = 126, .external_lex_state = 5}, + [1975] = {.lex_state = 126, .external_lex_state = 5}, + [1976] = {.lex_state = 126, .external_lex_state = 5}, + [1977] = {.lex_state = 264, .external_lex_state = 5}, + [1978] = {.lex_state = 264, .external_lex_state = 5}, + [1979] = {.lex_state = 262, .external_lex_state = 5}, + [1980] = {.lex_state = 126, .external_lex_state = 5}, + [1981] = {.lex_state = 126, .external_lex_state = 5}, + [1982] = {.lex_state = 126, .external_lex_state = 5}, + [1983] = {.lex_state = 126, .external_lex_state = 5}, + [1984] = {.lex_state = 262, .external_lex_state = 5}, + [1985] = {.lex_state = 121, .external_lex_state = 5}, + [1986] = {.lex_state = 121, .external_lex_state = 5}, + [1987] = {.lex_state = 121, .external_lex_state = 5}, + [1988] = {.lex_state = 121, .external_lex_state = 5}, + [1989] = {.lex_state = 264, .external_lex_state = 5}, + [1990] = {.lex_state = 264, .external_lex_state = 5}, + [1991] = {.lex_state = 264, .external_lex_state = 5}, + [1992] = {.lex_state = 264, .external_lex_state = 5}, + [1993] = {.lex_state = 126, .external_lex_state = 5}, + [1994] = {.lex_state = 126, .external_lex_state = 5}, + [1995] = {.lex_state = 126, .external_lex_state = 5}, + [1996] = {.lex_state = 126, .external_lex_state = 5}, + [1997] = {.lex_state = 262, .external_lex_state = 5}, + [1998] = {.lex_state = 266, .external_lex_state = 4}, + [1999] = {.lex_state = 266, .external_lex_state = 4}, + [2000] = {.lex_state = 126, .external_lex_state = 5}, + [2001] = {.lex_state = 262, .external_lex_state = 5}, + [2002] = {.lex_state = 262, .external_lex_state = 5}, + [2003] = {.lex_state = 262, .external_lex_state = 5}, + [2004] = {.lex_state = 126, .external_lex_state = 5}, + [2005] = {.lex_state = 262, .external_lex_state = 5}, + [2006] = {.lex_state = 262, .external_lex_state = 4}, + [2007] = {.lex_state = 262, .external_lex_state = 5}, + [2008] = {.lex_state = 102, .external_lex_state = 5}, + [2009] = {.lex_state = 262, .external_lex_state = 5}, + [2010] = {.lex_state = 262, .external_lex_state = 5}, + [2011] = {.lex_state = 129, .external_lex_state = 5}, + [2012] = {.lex_state = 262, .external_lex_state = 4}, + [2013] = {.lex_state = 262, .external_lex_state = 4}, + [2014] = {.lex_state = 262, .external_lex_state = 5}, + [2015] = {.lex_state = 126, .external_lex_state = 5}, + [2016] = {.lex_state = 262, .external_lex_state = 5}, + [2017] = {.lex_state = 264, .external_lex_state = 5}, + [2018] = {.lex_state = 266, .external_lex_state = 4}, + [2019] = {.lex_state = 102, .external_lex_state = 5}, + [2020] = {.lex_state = 266, .external_lex_state = 4}, + [2021] = {.lex_state = 129, .external_lex_state = 5}, + [2022] = {.lex_state = 262, .external_lex_state = 4}, + [2023] = {.lex_state = 262, .external_lex_state = 4}, + [2024] = {.lex_state = 262, .external_lex_state = 4}, + [2025] = {.lex_state = 262, .external_lex_state = 4}, + [2026] = {.lex_state = 102, .external_lex_state = 5}, + [2027] = {.lex_state = 102, .external_lex_state = 5}, + [2028] = {.lex_state = 102, .external_lex_state = 5}, + [2029] = {.lex_state = 264, .external_lex_state = 5}, + [2030] = {.lex_state = 264, .external_lex_state = 5}, + [2031] = {.lex_state = 264, .external_lex_state = 5}, + [2032] = {.lex_state = 264, .external_lex_state = 5}, + [2033] = {.lex_state = 264, .external_lex_state = 5}, + [2034] = {.lex_state = 264, .external_lex_state = 5}, + [2035] = {.lex_state = 264, .external_lex_state = 5}, + [2036] = {.lex_state = 264, .external_lex_state = 5}, + [2037] = {.lex_state = 264, .external_lex_state = 5}, + [2038] = {.lex_state = 264, .external_lex_state = 5}, + [2039] = {.lex_state = 266, .external_lex_state = 4}, + [2040] = {.lex_state = 266, .external_lex_state = 4}, + [2041] = {.lex_state = 264, .external_lex_state = 5}, + [2042] = {.lex_state = 264, .external_lex_state = 5}, + [2043] = {.lex_state = 264, .external_lex_state = 5}, + [2044] = {.lex_state = 262, .external_lex_state = 5}, + [2045] = {.lex_state = 262, .external_lex_state = 5}, + [2046] = {.lex_state = 264, .external_lex_state = 5}, + [2047] = {.lex_state = 264, .external_lex_state = 5}, + [2048] = {.lex_state = 264, .external_lex_state = 5}, + [2049] = {.lex_state = 264, .external_lex_state = 5}, + [2050] = {.lex_state = 264, .external_lex_state = 5}, + [2051] = {.lex_state = 264, .external_lex_state = 5}, + [2052] = {.lex_state = 264, .external_lex_state = 5}, + [2053] = {.lex_state = 264, .external_lex_state = 5}, + [2054] = {.lex_state = 264, .external_lex_state = 5}, + [2055] = {.lex_state = 264, .external_lex_state = 5}, + [2056] = {.lex_state = 264, .external_lex_state = 5}, + [2057] = {.lex_state = 264, .external_lex_state = 5}, + [2058] = {.lex_state = 264, .external_lex_state = 5}, + [2059] = {.lex_state = 264, .external_lex_state = 5}, + [2060] = {.lex_state = 264, .external_lex_state = 5}, + [2061] = {.lex_state = 264, .external_lex_state = 5}, + [2062] = {.lex_state = 264, .external_lex_state = 5}, + [2063] = {.lex_state = 264, .external_lex_state = 5}, + [2064] = {.lex_state = 264, .external_lex_state = 5}, + [2065] = {.lex_state = 264, .external_lex_state = 5}, + [2066] = {.lex_state = 264, .external_lex_state = 5}, + [2067] = {.lex_state = 266, .external_lex_state = 4}, + [2068] = {.lex_state = 264, .external_lex_state = 5}, + [2069] = {.lex_state = 266, .external_lex_state = 4}, + [2070] = {.lex_state = 264, .external_lex_state = 5}, + [2071] = {.lex_state = 264, .external_lex_state = 5}, + [2072] = {.lex_state = 102, .external_lex_state = 5}, + [2073] = {.lex_state = 102, .external_lex_state = 5}, + [2074] = {.lex_state = 262, .external_lex_state = 5}, + [2075] = {.lex_state = 262, .external_lex_state = 4}, + [2076] = {.lex_state = 262, .external_lex_state = 5}, + [2077] = {.lex_state = 102, .external_lex_state = 5}, + [2078] = {.lex_state = 102, .external_lex_state = 5}, + [2079] = {.lex_state = 102, .external_lex_state = 5}, + [2080] = {.lex_state = 102, .external_lex_state = 5}, + [2081] = {.lex_state = 266, .external_lex_state = 4}, + [2082] = {.lex_state = 102, .external_lex_state = 5}, + [2083] = {.lex_state = 102, .external_lex_state = 5}, + [2084] = {.lex_state = 102, .external_lex_state = 5}, + [2085] = {.lex_state = 102, .external_lex_state = 5}, + [2086] = {.lex_state = 266, .external_lex_state = 4}, + [2087] = {.lex_state = 102, .external_lex_state = 5}, + [2088] = {.lex_state = 102, .external_lex_state = 5}, + [2089] = {.lex_state = 102, .external_lex_state = 5}, + [2090] = {.lex_state = 266, .external_lex_state = 4}, + [2091] = {.lex_state = 266, .external_lex_state = 4}, + [2092] = {.lex_state = 102, .external_lex_state = 5}, + [2093] = {.lex_state = 102, .external_lex_state = 5}, + [2094] = {.lex_state = 102, .external_lex_state = 5}, + [2095] = {.lex_state = 262, .external_lex_state = 5}, + [2096] = {.lex_state = 266, .external_lex_state = 4}, + [2097] = {.lex_state = 266, .external_lex_state = 4}, + [2098] = {.lex_state = 264, .external_lex_state = 5}, + [2099] = {.lex_state = 264, .external_lex_state = 5}, + [2100] = {.lex_state = 266, .external_lex_state = 4}, + [2101] = {.lex_state = 266, .external_lex_state = 4}, + [2102] = {.lex_state = 266, .external_lex_state = 4}, + [2103] = {.lex_state = 266, .external_lex_state = 4}, + [2104] = {.lex_state = 266, .external_lex_state = 4}, + [2105] = {.lex_state = 266, .external_lex_state = 4}, + [2106] = {.lex_state = 266, .external_lex_state = 4}, + [2107] = {.lex_state = 102, .external_lex_state = 5}, + [2108] = {.lex_state = 102, .external_lex_state = 5}, + [2109] = {.lex_state = 102, .external_lex_state = 5}, + [2110] = {.lex_state = 102, .external_lex_state = 5}, + [2111] = {.lex_state = 102, .external_lex_state = 5}, + [2112] = {.lex_state = 266, .external_lex_state = 4}, + [2113] = {.lex_state = 266, .external_lex_state = 4}, + [2114] = {.lex_state = 262, .external_lex_state = 5}, + [2115] = {.lex_state = 102, .external_lex_state = 5}, + [2116] = {.lex_state = 102, .external_lex_state = 5}, + [2117] = {.lex_state = 102, .external_lex_state = 5}, + [2118] = {.lex_state = 262, .external_lex_state = 5}, + [2119] = {.lex_state = 266, .external_lex_state = 4}, + [2120] = {.lex_state = 262, .external_lex_state = 4}, + [2121] = {.lex_state = 102, .external_lex_state = 5}, + [2122] = {.lex_state = 262, .external_lex_state = 4}, + [2123] = {.lex_state = 262, .external_lex_state = 4}, + [2124] = {.lex_state = 266, .external_lex_state = 4}, + [2125] = {.lex_state = 266, .external_lex_state = 4}, + [2126] = {.lex_state = 102, .external_lex_state = 5}, + [2127] = {.lex_state = 126, .external_lex_state = 5}, + [2128] = {.lex_state = 102, .external_lex_state = 5}, + [2129] = {.lex_state = 266, .external_lex_state = 4}, + [2130] = {.lex_state = 102, .external_lex_state = 5}, + [2131] = {.lex_state = 266, .external_lex_state = 4}, + [2132] = {.lex_state = 102, .external_lex_state = 5}, + [2133] = {.lex_state = 266, .external_lex_state = 4}, + [2134] = {.lex_state = 266, .external_lex_state = 4}, + [2135] = {.lex_state = 266, .external_lex_state = 4}, + [2136] = {.lex_state = 266, .external_lex_state = 4}, + [2137] = {.lex_state = 266, .external_lex_state = 4}, + [2138] = {.lex_state = 266, .external_lex_state = 4}, + [2139] = {.lex_state = 266, .external_lex_state = 4}, + [2140] = {.lex_state = 266, .external_lex_state = 4}, + [2141] = {.lex_state = 102, .external_lex_state = 5}, + [2142] = {.lex_state = 262, .external_lex_state = 5}, + [2143] = {.lex_state = 262, .external_lex_state = 5}, + [2144] = {.lex_state = 262, .external_lex_state = 5}, + [2145] = {.lex_state = 262, .external_lex_state = 5}, + [2146] = {.lex_state = 262, .external_lex_state = 5}, + [2147] = {.lex_state = 126, .external_lex_state = 5}, + [2148] = {.lex_state = 266, .external_lex_state = 4}, + [2149] = {.lex_state = 266, .external_lex_state = 4}, + [2150] = {.lex_state = 262, .external_lex_state = 5}, + [2151] = {.lex_state = 102, .external_lex_state = 5}, + [2152] = {.lex_state = 262, .external_lex_state = 5}, + [2153] = {.lex_state = 262, .external_lex_state = 5}, + [2154] = {.lex_state = 262, .external_lex_state = 5}, + [2155] = {.lex_state = 264, .external_lex_state = 5}, + [2156] = {.lex_state = 266, .external_lex_state = 4}, + [2157] = {.lex_state = 121, .external_lex_state = 5}, + [2158] = {.lex_state = 121, .external_lex_state = 5}, + [2159] = {.lex_state = 121, .external_lex_state = 5}, + [2160] = {.lex_state = 121, .external_lex_state = 5}, + [2161] = {.lex_state = 121, .external_lex_state = 5}, + [2162] = {.lex_state = 121, .external_lex_state = 5}, + [2163] = {.lex_state = 121, .external_lex_state = 5}, + [2164] = {.lex_state = 121, .external_lex_state = 5}, + [2165] = {.lex_state = 121, .external_lex_state = 5}, + [2166] = {.lex_state = 121, .external_lex_state = 5}, + [2167] = {.lex_state = 121, .external_lex_state = 5}, + [2168] = {.lex_state = 121, .external_lex_state = 5}, + [2169] = {.lex_state = 121, .external_lex_state = 5}, + [2170] = {.lex_state = 121, .external_lex_state = 5}, + [2171] = {.lex_state = 102, .external_lex_state = 5}, + [2172] = {.lex_state = 102, .external_lex_state = 5}, + [2173] = {.lex_state = 121, .external_lex_state = 5}, + [2174] = {.lex_state = 121, .external_lex_state = 5}, + [2175] = {.lex_state = 262, .external_lex_state = 5}, + [2176] = {.lex_state = 262, .external_lex_state = 5}, + [2177] = {.lex_state = 262, .external_lex_state = 5}, + [2178] = {.lex_state = 102, .external_lex_state = 5}, + [2179] = {.lex_state = 262, .external_lex_state = 5}, + [2180] = {.lex_state = 262, .external_lex_state = 4}, + [2181] = {.lex_state = 121, .external_lex_state = 5}, + [2182] = {.lex_state = 121, .external_lex_state = 5}, + [2183] = {.lex_state = 121, .external_lex_state = 5}, + [2184] = {.lex_state = 121, .external_lex_state = 5}, + [2185] = {.lex_state = 121, .external_lex_state = 5}, + [2186] = {.lex_state = 262, .external_lex_state = 4}, + [2187] = {.lex_state = 262, .external_lex_state = 4}, + [2188] = {.lex_state = 121, .external_lex_state = 5}, + [2189] = {.lex_state = 121, .external_lex_state = 5}, + [2190] = {.lex_state = 121, .external_lex_state = 5}, + [2191] = {.lex_state = 121, .external_lex_state = 5}, + [2192] = {.lex_state = 121, .external_lex_state = 5}, + [2193] = {.lex_state = 121, .external_lex_state = 5}, + [2194] = {.lex_state = 121, .external_lex_state = 5}, + [2195] = {.lex_state = 121, .external_lex_state = 5}, + [2196] = {.lex_state = 121, .external_lex_state = 5}, + [2197] = {.lex_state = 121, .external_lex_state = 5}, + [2198] = {.lex_state = 121, .external_lex_state = 5}, + [2199] = {.lex_state = 126, .external_lex_state = 5}, + [2200] = {.lex_state = 262, .external_lex_state = 5}, + [2201] = {.lex_state = 102, .external_lex_state = 5}, + [2202] = {.lex_state = 102, .external_lex_state = 5}, + [2203] = {.lex_state = 264, .external_lex_state = 5}, + [2204] = {.lex_state = 102, .external_lex_state = 5}, + [2205] = {.lex_state = 102, .external_lex_state = 5}, + [2206] = {.lex_state = 264, .external_lex_state = 5}, + [2207] = {.lex_state = 264, .external_lex_state = 5}, + [2208] = {.lex_state = 264, .external_lex_state = 5}, + [2209] = {.lex_state = 102, .external_lex_state = 5}, + [2210] = {.lex_state = 264, .external_lex_state = 5}, + [2211] = {.lex_state = 264, .external_lex_state = 5}, + [2212] = {.lex_state = 262, .external_lex_state = 4}, + [2213] = {.lex_state = 264, .external_lex_state = 5}, + [2214] = {.lex_state = 264, .external_lex_state = 5}, + [2215] = {.lex_state = 121, .external_lex_state = 5}, + [2216] = {.lex_state = 264, .external_lex_state = 5}, + [2217] = {.lex_state = 264, .external_lex_state = 5}, + [2218] = {.lex_state = 262, .external_lex_state = 4}, + [2219] = {.lex_state = 262, .external_lex_state = 4}, + [2220] = {.lex_state = 102, .external_lex_state = 5}, + [2221] = {.lex_state = 102, .external_lex_state = 5}, + [2222] = {.lex_state = 126, .external_lex_state = 5}, + [2223] = {.lex_state = 262, .external_lex_state = 4}, + [2224] = {.lex_state = 266, .external_lex_state = 4}, + [2225] = {.lex_state = 264, .external_lex_state = 5}, + [2226] = {.lex_state = 264, .external_lex_state = 5}, + [2227] = {.lex_state = 264, .external_lex_state = 5}, + [2228] = {.lex_state = 264, .external_lex_state = 5}, + [2229] = {.lex_state = 264, .external_lex_state = 5}, + [2230] = {.lex_state = 102, .external_lex_state = 5}, + [2231] = {.lex_state = 264, .external_lex_state = 5}, + [2232] = {.lex_state = 102, .external_lex_state = 5}, + [2233] = {.lex_state = 102, .external_lex_state = 5}, + [2234] = {.lex_state = 102, .external_lex_state = 5}, + [2235] = {.lex_state = 262, .external_lex_state = 5}, + [2236] = {.lex_state = 262, .external_lex_state = 5}, + [2237] = {.lex_state = 262, .external_lex_state = 4}, + [2238] = {.lex_state = 264, .external_lex_state = 5}, + [2239] = {.lex_state = 262, .external_lex_state = 5}, + [2240] = {.lex_state = 264, .external_lex_state = 5}, + [2241] = {.lex_state = 262, .external_lex_state = 5}, + [2242] = {.lex_state = 264, .external_lex_state = 5}, + [2243] = {.lex_state = 262, .external_lex_state = 4}, + [2244] = {.lex_state = 264, .external_lex_state = 5}, + [2245] = {.lex_state = 264, .external_lex_state = 5}, + [2246] = {.lex_state = 262, .external_lex_state = 4}, + [2247] = {.lex_state = 264, .external_lex_state = 5}, + [2248] = {.lex_state = 264, .external_lex_state = 5}, + [2249] = {.lex_state = 264, .external_lex_state = 5}, + [2250] = {.lex_state = 264, .external_lex_state = 5}, + [2251] = {.lex_state = 262, .external_lex_state = 5}, + [2252] = {.lex_state = 262, .external_lex_state = 5}, + [2253] = {.lex_state = 262, .external_lex_state = 5}, + [2254] = {.lex_state = 264, .external_lex_state = 5}, + [2255] = {.lex_state = 262, .external_lex_state = 5}, + [2256] = {.lex_state = 264, .external_lex_state = 5}, + [2257] = {.lex_state = 264, .external_lex_state = 5}, + [2258] = {.lex_state = 102, .external_lex_state = 5}, + [2259] = {.lex_state = 264, .external_lex_state = 5}, + [2260] = {.lex_state = 264, .external_lex_state = 5}, + [2261] = {.lex_state = 264, .external_lex_state = 5}, + [2262] = {.lex_state = 264, .external_lex_state = 5}, + [2263] = {.lex_state = 264, .external_lex_state = 5}, + [2264] = {.lex_state = 132, .external_lex_state = 4}, + [2265] = {.lex_state = 102, .external_lex_state = 5}, + [2266] = {.lex_state = 102, .external_lex_state = 5}, + [2267] = {.lex_state = 262, .external_lex_state = 5}, + [2268] = {.lex_state = 102, .external_lex_state = 5}, + [2269] = {.lex_state = 262, .external_lex_state = 5}, + [2270] = {.lex_state = 262, .external_lex_state = 4}, + [2271] = {.lex_state = 262, .external_lex_state = 5}, + [2272] = {.lex_state = 262, .external_lex_state = 5}, + [2273] = {.lex_state = 262, .external_lex_state = 4}, + [2274] = {.lex_state = 262, .external_lex_state = 5}, + [2275] = {.lex_state = 262, .external_lex_state = 4}, + [2276] = {.lex_state = 262, .external_lex_state = 4}, + [2277] = {.lex_state = 129, .external_lex_state = 5}, + [2278] = {.lex_state = 102, .external_lex_state = 5}, + [2279] = {.lex_state = 262, .external_lex_state = 4}, + [2280] = {.lex_state = 262, .external_lex_state = 5}, + [2281] = {.lex_state = 262, .external_lex_state = 5}, + [2282] = {.lex_state = 262, .external_lex_state = 4}, + [2283] = {.lex_state = 262, .external_lex_state = 5}, + [2284] = {.lex_state = 132, .external_lex_state = 4}, + [2285] = {.lex_state = 262, .external_lex_state = 5}, + [2286] = {.lex_state = 262, .external_lex_state = 4}, + [2287] = {.lex_state = 262, .external_lex_state = 4}, + [2288] = {.lex_state = 262, .external_lex_state = 5}, + [2289] = {.lex_state = 262, .external_lex_state = 5}, + [2290] = {.lex_state = 262, .external_lex_state = 5}, + [2291] = {.lex_state = 262, .external_lex_state = 5}, + [2292] = {.lex_state = 262, .external_lex_state = 5}, + [2293] = {.lex_state = 102, .external_lex_state = 5}, + [2294] = {.lex_state = 262, .external_lex_state = 4}, + [2295] = {.lex_state = 102, .external_lex_state = 5}, + [2296] = {.lex_state = 262, .external_lex_state = 4}, + [2297] = {.lex_state = 262, .external_lex_state = 5}, + [2298] = {.lex_state = 262, .external_lex_state = 4}, + [2299] = {.lex_state = 262, .external_lex_state = 4}, + [2300] = {.lex_state = 262, .external_lex_state = 4}, + [2301] = {.lex_state = 262, .external_lex_state = 4}, + [2302] = {.lex_state = 262, .external_lex_state = 4}, + [2303] = {.lex_state = 262, .external_lex_state = 4}, + [2304] = {.lex_state = 102, .external_lex_state = 5}, + [2305] = {.lex_state = 102, .external_lex_state = 5}, + [2306] = {.lex_state = 262, .external_lex_state = 4}, + [2307] = {.lex_state = 262, .external_lex_state = 4}, + [2308] = {.lex_state = 262, .external_lex_state = 4}, + [2309] = {.lex_state = 262, .external_lex_state = 4}, + [2310] = {.lex_state = 262, .external_lex_state = 4}, + [2311] = {.lex_state = 262, .external_lex_state = 5}, + [2312] = {.lex_state = 102, .external_lex_state = 5}, + [2313] = {.lex_state = 102, .external_lex_state = 5}, + [2314] = {.lex_state = 102, .external_lex_state = 5}, + [2315] = {.lex_state = 102, .external_lex_state = 5}, + [2316] = {.lex_state = 102, .external_lex_state = 5}, + [2317] = {.lex_state = 102, .external_lex_state = 5}, + [2318] = {.lex_state = 102, .external_lex_state = 5}, + [2319] = {.lex_state = 102, .external_lex_state = 5}, + [2320] = {.lex_state = 102, .external_lex_state = 5}, + [2321] = {.lex_state = 102, .external_lex_state = 5}, + [2322] = {.lex_state = 102, .external_lex_state = 5}, + [2323] = {.lex_state = 102, .external_lex_state = 5}, + [2324] = {.lex_state = 102, .external_lex_state = 5}, + [2325] = {.lex_state = 102, .external_lex_state = 5}, + [2326] = {.lex_state = 102, .external_lex_state = 5}, + [2327] = {.lex_state = 102, .external_lex_state = 5}, + [2328] = {.lex_state = 102, .external_lex_state = 5}, + [2329] = {.lex_state = 102, .external_lex_state = 5}, + [2330] = {.lex_state = 102, .external_lex_state = 5}, + [2331] = {.lex_state = 262, .external_lex_state = 5}, + [2332] = {.lex_state = 102, .external_lex_state = 5}, + [2333] = {.lex_state = 262, .external_lex_state = 4}, + [2334] = {.lex_state = 102, .external_lex_state = 5}, + [2335] = {.lex_state = 102, .external_lex_state = 5}, + [2336] = {.lex_state = 102, .external_lex_state = 5}, + [2337] = {.lex_state = 262, .external_lex_state = 4}, + [2338] = {.lex_state = 102, .external_lex_state = 5}, + [2339] = {.lex_state = 102, .external_lex_state = 5}, + [2340] = {.lex_state = 262, .external_lex_state = 5}, + [2341] = {.lex_state = 102, .external_lex_state = 5}, + [2342] = {.lex_state = 102, .external_lex_state = 5}, + [2343] = {.lex_state = 262, .external_lex_state = 5}, + [2344] = {.lex_state = 262, .external_lex_state = 4}, + [2345] = {.lex_state = 262, .external_lex_state = 4}, + [2346] = {.lex_state = 262, .external_lex_state = 4}, + [2347] = {.lex_state = 262, .external_lex_state = 4}, + [2348] = {.lex_state = 262, .external_lex_state = 4}, + [2349] = {.lex_state = 262, .external_lex_state = 4}, + [2350] = {.lex_state = 262, .external_lex_state = 5}, + [2351] = {.lex_state = 262, .external_lex_state = 4}, + [2352] = {.lex_state = 262, .external_lex_state = 4}, + [2353] = {.lex_state = 262, .external_lex_state = 4}, + [2354] = {.lex_state = 262, .external_lex_state = 4}, + [2355] = {.lex_state = 102, .external_lex_state = 5}, + [2356] = {.lex_state = 262, .external_lex_state = 4}, + [2357] = {.lex_state = 262, .external_lex_state = 4}, + [2358] = {.lex_state = 262, .external_lex_state = 4}, + [2359] = {.lex_state = 262, .external_lex_state = 4}, + [2360] = {.lex_state = 262, .external_lex_state = 4}, + [2361] = {.lex_state = 262, .external_lex_state = 5}, + [2362] = {.lex_state = 262, .external_lex_state = 4}, + [2363] = {.lex_state = 262, .external_lex_state = 5}, + [2364] = {.lex_state = 262, .external_lex_state = 5}, + [2365] = {.lex_state = 102, .external_lex_state = 5}, + [2366] = {.lex_state = 102, .external_lex_state = 5}, + [2367] = {.lex_state = 102, .external_lex_state = 5}, + [2368] = {.lex_state = 262, .external_lex_state = 4}, + [2369] = {.lex_state = 262, .external_lex_state = 5}, + [2370] = {.lex_state = 262, .external_lex_state = 5}, + [2371] = {.lex_state = 262, .external_lex_state = 5}, + [2372] = {.lex_state = 262, .external_lex_state = 5}, + [2373] = {.lex_state = 262, .external_lex_state = 5}, + [2374] = {.lex_state = 102, .external_lex_state = 5}, + [2375] = {.lex_state = 102, .external_lex_state = 5}, + [2376] = {.lex_state = 102, .external_lex_state = 5}, + [2377] = {.lex_state = 102, .external_lex_state = 5}, + [2378] = {.lex_state = 132, .external_lex_state = 4}, + [2379] = {.lex_state = 132, .external_lex_state = 4}, + [2380] = {.lex_state = 132, .external_lex_state = 4}, + [2381] = {.lex_state = 132, .external_lex_state = 4}, + [2382] = {.lex_state = 132, .external_lex_state = 4}, + [2383] = {.lex_state = 132, .external_lex_state = 4}, + [2384] = {.lex_state = 132, .external_lex_state = 4}, + [2385] = {.lex_state = 132, .external_lex_state = 4}, + [2386] = {.lex_state = 132, .external_lex_state = 4}, + [2387] = {.lex_state = 132, .external_lex_state = 4}, + [2388] = {.lex_state = 102, .external_lex_state = 5}, + [2389] = {.lex_state = 132, .external_lex_state = 4}, + [2390] = {.lex_state = 262, .external_lex_state = 5}, + [2391] = {.lex_state = 262, .external_lex_state = 5}, + [2392] = {.lex_state = 262, .external_lex_state = 5}, + [2393] = {.lex_state = 262, .external_lex_state = 5}, + [2394] = {.lex_state = 262, .external_lex_state = 5}, + [2395] = {.lex_state = 262, .external_lex_state = 5}, + [2396] = {.lex_state = 262, .external_lex_state = 5}, + [2397] = {.lex_state = 262, .external_lex_state = 5}, + [2398] = {.lex_state = 262, .external_lex_state = 5}, + [2399] = {.lex_state = 262, .external_lex_state = 5}, + [2400] = {.lex_state = 262, .external_lex_state = 5}, + [2401] = {.lex_state = 262, .external_lex_state = 5}, + [2402] = {.lex_state = 262, .external_lex_state = 5}, + [2403] = {.lex_state = 262, .external_lex_state = 5}, + [2404] = {.lex_state = 262, .external_lex_state = 5}, + [2405] = {.lex_state = 132, .external_lex_state = 4}, + [2406] = {.lex_state = 262, .external_lex_state = 5}, + [2407] = {.lex_state = 262, .external_lex_state = 5}, + [2408] = {.lex_state = 132, .external_lex_state = 4}, + [2409] = {.lex_state = 132, .external_lex_state = 4}, + [2410] = {.lex_state = 262, .external_lex_state = 5}, + [2411] = {.lex_state = 132, .external_lex_state = 4}, + [2412] = {.lex_state = 262, .external_lex_state = 5}, + [2413] = {.lex_state = 262, .external_lex_state = 5}, + [2414] = {.lex_state = 262, .external_lex_state = 5}, + [2415] = {.lex_state = 262, .external_lex_state = 5}, + [2416] = {.lex_state = 132, .external_lex_state = 4}, + [2417] = {.lex_state = 102, .external_lex_state = 5}, + [2418] = {.lex_state = 132, .external_lex_state = 4}, + [2419] = {.lex_state = 132, .external_lex_state = 4}, + [2420] = {.lex_state = 262, .external_lex_state = 5}, + [2421] = {.lex_state = 262, .external_lex_state = 5}, + [2422] = {.lex_state = 262, .external_lex_state = 5}, + [2423] = {.lex_state = 262, .external_lex_state = 5}, + [2424] = {.lex_state = 262, .external_lex_state = 5}, + [2425] = {.lex_state = 132, .external_lex_state = 4}, + [2426] = {.lex_state = 262, .external_lex_state = 5}, + [2427] = {.lex_state = 102, .external_lex_state = 5}, + [2428] = {.lex_state = 102, .external_lex_state = 5}, + [2429] = {.lex_state = 102, .external_lex_state = 5}, + [2430] = {.lex_state = 132, .external_lex_state = 4}, + [2431] = {.lex_state = 262, .external_lex_state = 5}, + [2432] = {.lex_state = 132, .external_lex_state = 4}, + [2433] = {.lex_state = 132, .external_lex_state = 4}, + [2434] = {.lex_state = 102, .external_lex_state = 5}, + [2435] = {.lex_state = 102, .external_lex_state = 5}, + [2436] = {.lex_state = 262, .external_lex_state = 5}, + [2437] = {.lex_state = 262, .external_lex_state = 5}, + [2438] = {.lex_state = 262, .external_lex_state = 5}, + [2439] = {.lex_state = 262, .external_lex_state = 5}, + [2440] = {.lex_state = 262, .external_lex_state = 5}, + [2441] = {.lex_state = 262, .external_lex_state = 5}, + [2442] = {.lex_state = 262, .external_lex_state = 5}, + [2443] = {.lex_state = 262, .external_lex_state = 5}, + [2444] = {.lex_state = 262, .external_lex_state = 5}, + [2445] = {.lex_state = 262, .external_lex_state = 5}, + [2446] = {.lex_state = 132, .external_lex_state = 4}, + [2447] = {.lex_state = 132, .external_lex_state = 4}, + [2448] = {.lex_state = 129, .external_lex_state = 5}, + [2449] = {.lex_state = 262, .external_lex_state = 5}, + [2450] = {.lex_state = 262, .external_lex_state = 5}, + [2451] = {.lex_state = 262, .external_lex_state = 5}, + [2452] = {.lex_state = 262, .external_lex_state = 5}, + [2453] = {.lex_state = 129, .external_lex_state = 5}, + [2454] = {.lex_state = 262, .external_lex_state = 5}, + [2455] = {.lex_state = 262, .external_lex_state = 5}, + [2456] = {.lex_state = 262, .external_lex_state = 5}, + [2457] = {.lex_state = 132, .external_lex_state = 4}, + [2458] = {.lex_state = 262, .external_lex_state = 4}, + [2459] = {.lex_state = 262, .external_lex_state = 5}, + [2460] = {.lex_state = 262, .external_lex_state = 4}, + [2461] = {.lex_state = 102, .external_lex_state = 5}, + [2462] = {.lex_state = 102, .external_lex_state = 5}, + [2463] = {.lex_state = 102, .external_lex_state = 5}, + [2464] = {.lex_state = 102, .external_lex_state = 5}, + [2465] = {.lex_state = 102, .external_lex_state = 5}, + [2466] = {.lex_state = 102, .external_lex_state = 5}, + [2467] = {.lex_state = 132, .external_lex_state = 4}, + [2468] = {.lex_state = 102, .external_lex_state = 5}, + [2469] = {.lex_state = 132, .external_lex_state = 4}, + [2470] = {.lex_state = 132, .external_lex_state = 4}, + [2471] = {.lex_state = 262, .external_lex_state = 4}, + [2472] = {.lex_state = 262, .external_lex_state = 4}, + [2473] = {.lex_state = 262, .external_lex_state = 4}, + [2474] = {.lex_state = 262, .external_lex_state = 4}, + [2475] = {.lex_state = 262, .external_lex_state = 4}, + [2476] = {.lex_state = 132, .external_lex_state = 4}, + [2477] = {.lex_state = 132, .external_lex_state = 4}, + [2478] = {.lex_state = 262, .external_lex_state = 4}, + [2479] = {.lex_state = 262, .external_lex_state = 4}, + [2480] = {.lex_state = 102, .external_lex_state = 5}, + [2481] = {.lex_state = 262, .external_lex_state = 4}, + [2482] = {.lex_state = 129, .external_lex_state = 5}, + [2483] = {.lex_state = 262, .external_lex_state = 4}, + [2484] = {.lex_state = 262, .external_lex_state = 4}, + [2485] = {.lex_state = 129, .external_lex_state = 5}, + [2486] = {.lex_state = 102, .external_lex_state = 5}, + [2487] = {.lex_state = 129, .external_lex_state = 5}, + [2488] = {.lex_state = 102, .external_lex_state = 5}, + [2489] = {.lex_state = 102, .external_lex_state = 5}, + [2490] = {.lex_state = 102, .external_lex_state = 5}, + [2491] = {.lex_state = 102, .external_lex_state = 5}, + [2492] = {.lex_state = 102, .external_lex_state = 5}, + [2493] = {.lex_state = 102, .external_lex_state = 5}, + [2494] = {.lex_state = 132, .external_lex_state = 4}, + [2495] = {.lex_state = 132, .external_lex_state = 4}, + [2496] = {.lex_state = 102, .external_lex_state = 5}, + [2497] = {.lex_state = 102, .external_lex_state = 5}, + [2498] = {.lex_state = 132, .external_lex_state = 4}, + [2499] = {.lex_state = 132, .external_lex_state = 4}, + [2500] = {.lex_state = 129, .external_lex_state = 5}, + [2501] = {.lex_state = 129, .external_lex_state = 5}, + [2502] = {.lex_state = 129, .external_lex_state = 5}, + [2503] = {.lex_state = 129, .external_lex_state = 5}, + [2504] = {.lex_state = 102, .external_lex_state = 5}, + [2505] = {.lex_state = 102, .external_lex_state = 5}, + [2506] = {.lex_state = 102, .external_lex_state = 5}, + [2507] = {.lex_state = 102, .external_lex_state = 5}, + [2508] = {.lex_state = 102, .external_lex_state = 5}, + [2509] = {.lex_state = 102, .external_lex_state = 5}, + [2510] = {.lex_state = 102, .external_lex_state = 5}, + [2511] = {.lex_state = 262, .external_lex_state = 5}, + [2512] = {.lex_state = 262, .external_lex_state = 4}, + [2513] = {.lex_state = 262, .external_lex_state = 4}, + [2514] = {.lex_state = 102, .external_lex_state = 5}, + [2515] = {.lex_state = 262, .external_lex_state = 5}, + [2516] = {.lex_state = 129, .external_lex_state = 5}, + [2517] = {.lex_state = 132, .external_lex_state = 4}, + [2518] = {.lex_state = 132, .external_lex_state = 4}, + [2519] = {.lex_state = 262, .external_lex_state = 4}, + [2520] = {.lex_state = 129, .external_lex_state = 5}, + [2521] = {.lex_state = 129, .external_lex_state = 5}, + [2522] = {.lex_state = 262, .external_lex_state = 5}, + [2523] = {.lex_state = 262, .external_lex_state = 5}, + [2524] = {.lex_state = 262, .external_lex_state = 5}, + [2525] = {.lex_state = 262, .external_lex_state = 5}, + [2526] = {.lex_state = 262, .external_lex_state = 5}, + [2527] = {.lex_state = 262, .external_lex_state = 5}, + [2528] = {.lex_state = 262, .external_lex_state = 5}, + [2529] = {.lex_state = 262, .external_lex_state = 5}, + [2530] = {.lex_state = 262, .external_lex_state = 5}, + [2531] = {.lex_state = 262, .external_lex_state = 5}, + [2532] = {.lex_state = 262, .external_lex_state = 5}, + [2533] = {.lex_state = 262, .external_lex_state = 5}, + [2534] = {.lex_state = 262, .external_lex_state = 5}, + [2535] = {.lex_state = 262, .external_lex_state = 5}, + [2536] = {.lex_state = 262, .external_lex_state = 5}, + [2537] = {.lex_state = 262, .external_lex_state = 5}, + [2538] = {.lex_state = 262, .external_lex_state = 5}, + [2539] = {.lex_state = 129, .external_lex_state = 5}, + [2540] = {.lex_state = 129, .external_lex_state = 5}, + [2541] = {.lex_state = 135, .external_lex_state = 5}, + [2542] = {.lex_state = 135, .external_lex_state = 5}, + [2543] = {.lex_state = 135, .external_lex_state = 5}, + [2544] = {.lex_state = 135, .external_lex_state = 5}, + [2545] = {.lex_state = 135, .external_lex_state = 5}, + [2546] = {.lex_state = 135, .external_lex_state = 5}, + [2547] = {.lex_state = 135, .external_lex_state = 5}, + [2548] = {.lex_state = 135, .external_lex_state = 5}, + [2549] = {.lex_state = 135, .external_lex_state = 5}, + [2550] = {.lex_state = 135, .external_lex_state = 5}, + [2551] = {.lex_state = 135, .external_lex_state = 5}, + [2552] = {.lex_state = 135, .external_lex_state = 5}, + [2553] = {.lex_state = 135, .external_lex_state = 5}, + [2554] = {.lex_state = 135, .external_lex_state = 5}, + [2555] = {.lex_state = 135, .external_lex_state = 5}, + [2556] = {.lex_state = 135, .external_lex_state = 5}, + [2557] = {.lex_state = 132, .external_lex_state = 4}, + [2558] = {.lex_state = 129, .external_lex_state = 5}, + [2559] = {.lex_state = 132, .external_lex_state = 4}, + [2560] = {.lex_state = 129, .external_lex_state = 5}, + [2561] = {.lex_state = 129, .external_lex_state = 5}, + [2562] = {.lex_state = 262, .external_lex_state = 5}, + [2563] = {.lex_state = 135, .external_lex_state = 5}, + [2564] = {.lex_state = 135, .external_lex_state = 5}, + [2565] = {.lex_state = 135, .external_lex_state = 5}, + [2566] = {.lex_state = 135, .external_lex_state = 5}, + [2567] = {.lex_state = 135, .external_lex_state = 5}, + [2568] = {.lex_state = 135, .external_lex_state = 5}, + [2569] = {.lex_state = 135, .external_lex_state = 5}, + [2570] = {.lex_state = 135, .external_lex_state = 5}, + [2571] = {.lex_state = 135, .external_lex_state = 5}, + [2572] = {.lex_state = 135, .external_lex_state = 5}, + [2573] = {.lex_state = 102, .external_lex_state = 5}, + [2574] = {.lex_state = 132, .external_lex_state = 4}, + [2575] = {.lex_state = 135, .external_lex_state = 5}, + [2576] = {.lex_state = 135, .external_lex_state = 5}, + [2577] = {.lex_state = 135, .external_lex_state = 5}, + [2578] = {.lex_state = 262, .external_lex_state = 5}, + [2579] = {.lex_state = 135, .external_lex_state = 5}, + [2580] = {.lex_state = 135, .external_lex_state = 5}, + [2581] = {.lex_state = 135, .external_lex_state = 5}, + [2582] = {.lex_state = 262, .external_lex_state = 4}, + [2583] = {.lex_state = 262, .external_lex_state = 4}, + [2584] = {.lex_state = 129, .external_lex_state = 5}, + [2585] = {.lex_state = 129, .external_lex_state = 5}, + [2586] = {.lex_state = 129, .external_lex_state = 5}, + [2587] = {.lex_state = 262, .external_lex_state = 4}, + [2588] = {.lex_state = 129, .external_lex_state = 5}, + [2589] = {.lex_state = 129, .external_lex_state = 5}, + [2590] = {.lex_state = 262, .external_lex_state = 5}, + [2591] = {.lex_state = 129, .external_lex_state = 5}, + [2592] = {.lex_state = 262, .external_lex_state = 5}, + [2593] = {.lex_state = 129, .external_lex_state = 5}, + [2594] = {.lex_state = 102, .external_lex_state = 4}, + [2595] = {.lex_state = 129, .external_lex_state = 5}, + [2596] = {.lex_state = 129, .external_lex_state = 5}, + [2597] = {.lex_state = 262, .external_lex_state = 5}, + [2598] = {.lex_state = 129, .external_lex_state = 5}, + [2599] = {.lex_state = 262, .external_lex_state = 4}, + [2600] = {.lex_state = 262, .external_lex_state = 5}, + [2601] = {.lex_state = 262, .external_lex_state = 5}, + [2602] = {.lex_state = 129, .external_lex_state = 5}, + [2603] = {.lex_state = 262, .external_lex_state = 5}, + [2604] = {.lex_state = 262, .external_lex_state = 5}, + [2605] = {.lex_state = 262, .external_lex_state = 5}, + [2606] = {.lex_state = 135, .external_lex_state = 5}, + [2607] = {.lex_state = 262, .external_lex_state = 5}, + [2608] = {.lex_state = 262, .external_lex_state = 5}, + [2609] = {.lex_state = 262, .external_lex_state = 5}, + [2610] = {.lex_state = 262, .external_lex_state = 5}, + [2611] = {.lex_state = 262, .external_lex_state = 5}, + [2612] = {.lex_state = 262, .external_lex_state = 5}, + [2613] = {.lex_state = 262, .external_lex_state = 5}, + [2614] = {.lex_state = 262, .external_lex_state = 5}, + [2615] = {.lex_state = 262, .external_lex_state = 5}, + [2616] = {.lex_state = 262, .external_lex_state = 5}, + [2617] = {.lex_state = 262, .external_lex_state = 5}, + [2618] = {.lex_state = 262, .external_lex_state = 5}, + [2619] = {.lex_state = 262, .external_lex_state = 5}, + [2620] = {.lex_state = 262, .external_lex_state = 5}, + [2621] = {.lex_state = 262, .external_lex_state = 5}, + [2622] = {.lex_state = 262, .external_lex_state = 5}, + [2623] = {.lex_state = 262, .external_lex_state = 5}, + [2624] = {.lex_state = 135, .external_lex_state = 5}, + [2625] = {.lex_state = 135, .external_lex_state = 5}, + [2626] = {.lex_state = 135, .external_lex_state = 5}, + [2627] = {.lex_state = 135, .external_lex_state = 5}, + [2628] = {.lex_state = 262, .external_lex_state = 5}, + [2629] = {.lex_state = 262, .external_lex_state = 5}, + [2630] = {.lex_state = 262, .external_lex_state = 5}, + [2631] = {.lex_state = 262, .external_lex_state = 5}, + [2632] = {.lex_state = 262, .external_lex_state = 4}, + [2633] = {.lex_state = 262, .external_lex_state = 4}, + [2634] = {.lex_state = 135, .external_lex_state = 5}, + [2635] = {.lex_state = 135, .external_lex_state = 5}, + [2636] = {.lex_state = 129, .external_lex_state = 5}, + [2637] = {.lex_state = 129, .external_lex_state = 5}, + [2638] = {.lex_state = 129, .external_lex_state = 5}, + [2639] = {.lex_state = 129, .external_lex_state = 5}, + [2640] = {.lex_state = 102, .external_lex_state = 4}, + [2641] = {.lex_state = 135, .external_lex_state = 5}, + [2642] = {.lex_state = 135, .external_lex_state = 5}, + [2643] = {.lex_state = 262, .external_lex_state = 5}, + [2644] = {.lex_state = 262, .external_lex_state = 4}, + [2645] = {.lex_state = 262, .external_lex_state = 4}, + [2646] = {.lex_state = 262, .external_lex_state = 5}, + [2647] = {.lex_state = 262, .external_lex_state = 4}, + [2648] = {.lex_state = 102, .external_lex_state = 5}, + [2649] = {.lex_state = 262, .external_lex_state = 5}, + [2650] = {.lex_state = 262, .external_lex_state = 5}, + [2651] = {.lex_state = 102, .external_lex_state = 4}, + [2652] = {.lex_state = 102, .external_lex_state = 4}, + [2653] = {.lex_state = 138, .external_lex_state = 4}, + [2654] = {.lex_state = 262, .external_lex_state = 5}, + [2655] = {.lex_state = 129, .external_lex_state = 5}, + [2656] = {.lex_state = 262, .external_lex_state = 5}, + [2657] = {.lex_state = 262, .external_lex_state = 5}, + [2658] = {.lex_state = 262, .external_lex_state = 5}, + [2659] = {.lex_state = 262, .external_lex_state = 5}, + [2660] = {.lex_state = 262, .external_lex_state = 5}, + [2661] = {.lex_state = 262, .external_lex_state = 5}, + [2662] = {.lex_state = 262, .external_lex_state = 5}, + [2663] = {.lex_state = 102, .external_lex_state = 4}, + [2664] = {.lex_state = 102, .external_lex_state = 4}, + [2665] = {.lex_state = 262, .external_lex_state = 5}, + [2666] = {.lex_state = 262, .external_lex_state = 5}, + [2667] = {.lex_state = 262, .external_lex_state = 5}, + [2668] = {.lex_state = 262, .external_lex_state = 5}, + [2669] = {.lex_state = 129, .external_lex_state = 5}, + [2670] = {.lex_state = 262, .external_lex_state = 5}, + [2671] = {.lex_state = 102, .external_lex_state = 4}, + [2672] = {.lex_state = 102, .external_lex_state = 4}, + [2673] = {.lex_state = 262, .external_lex_state = 5}, + [2674] = {.lex_state = 129, .external_lex_state = 4}, + [2675] = {.lex_state = 262, .external_lex_state = 5}, + [2676] = {.lex_state = 262, .external_lex_state = 5}, + [2677] = {.lex_state = 262, .external_lex_state = 5}, + [2678] = {.lex_state = 132, .external_lex_state = 4}, + [2679] = {.lex_state = 102, .external_lex_state = 4}, + [2680] = {.lex_state = 102, .external_lex_state = 4}, + [2681] = {.lex_state = 102, .external_lex_state = 4}, + [2682] = {.lex_state = 132, .external_lex_state = 4}, + [2683] = {.lex_state = 102, .external_lex_state = 4}, + [2684] = {.lex_state = 102, .external_lex_state = 4}, + [2685] = {.lex_state = 129, .external_lex_state = 5}, + [2686] = {.lex_state = 129, .external_lex_state = 5}, + [2687] = {.lex_state = 132, .external_lex_state = 4}, + [2688] = {.lex_state = 132, .external_lex_state = 4}, + [2689] = {.lex_state = 132, .external_lex_state = 4}, + [2690] = {.lex_state = 132, .external_lex_state = 4}, + [2691] = {.lex_state = 102, .external_lex_state = 4}, + [2692] = {.lex_state = 132, .external_lex_state = 4}, + [2693] = {.lex_state = 132, .external_lex_state = 4}, + [2694] = {.lex_state = 132, .external_lex_state = 4}, + [2695] = {.lex_state = 132, .external_lex_state = 4}, + [2696] = {.lex_state = 132, .external_lex_state = 4}, + [2697] = {.lex_state = 132, .external_lex_state = 4}, + [2698] = {.lex_state = 132, .external_lex_state = 4}, + [2699] = {.lex_state = 132, .external_lex_state = 4}, + [2700] = {.lex_state = 132, .external_lex_state = 4}, + [2701] = {.lex_state = 132, .external_lex_state = 4}, + [2702] = {.lex_state = 132, .external_lex_state = 4}, + [2703] = {.lex_state = 102, .external_lex_state = 4}, + [2704] = {.lex_state = 102, .external_lex_state = 4}, + [2705] = {.lex_state = 102, .external_lex_state = 4}, + [2706] = {.lex_state = 132, .external_lex_state = 4}, + [2707] = {.lex_state = 132, .external_lex_state = 4}, + [2708] = {.lex_state = 132, .external_lex_state = 4}, + [2709] = {.lex_state = 132, .external_lex_state = 4}, + [2710] = {.lex_state = 132, .external_lex_state = 4}, + [2711] = {.lex_state = 132, .external_lex_state = 4}, + [2712] = {.lex_state = 132, .external_lex_state = 4}, + [2713] = {.lex_state = 132, .external_lex_state = 4}, + [2714] = {.lex_state = 132, .external_lex_state = 4}, + [2715] = {.lex_state = 132, .external_lex_state = 4}, + [2716] = {.lex_state = 132, .external_lex_state = 4}, + [2717] = {.lex_state = 132, .external_lex_state = 4}, + [2718] = {.lex_state = 132, .external_lex_state = 4}, + [2719] = {.lex_state = 132, .external_lex_state = 4}, + [2720] = {.lex_state = 132, .external_lex_state = 4}, + [2721] = {.lex_state = 132, .external_lex_state = 4}, + [2722] = {.lex_state = 102, .external_lex_state = 4}, + [2723] = {.lex_state = 102, .external_lex_state = 4}, + [2724] = {.lex_state = 102, .external_lex_state = 4}, + [2725] = {.lex_state = 102, .external_lex_state = 4}, + [2726] = {.lex_state = 262, .external_lex_state = 4}, + [2727] = {.lex_state = 262, .external_lex_state = 4}, + [2728] = {.lex_state = 102, .external_lex_state = 4}, + [2729] = {.lex_state = 262, .external_lex_state = 4}, + [2730] = {.lex_state = 102, .external_lex_state = 4}, + [2731] = {.lex_state = 129, .external_lex_state = 5}, + [2732] = {.lex_state = 266, .external_lex_state = 4}, + [2733] = {.lex_state = 102, .external_lex_state = 4}, + [2734] = {.lex_state = 262, .external_lex_state = 4}, + [2735] = {.lex_state = 129, .external_lex_state = 5}, + [2736] = {.lex_state = 266, .external_lex_state = 4}, + [2737] = {.lex_state = 262, .external_lex_state = 4}, + [2738] = {.lex_state = 262, .external_lex_state = 4}, + [2739] = {.lex_state = 262, .external_lex_state = 4}, + [2740] = {.lex_state = 262, .external_lex_state = 4}, + [2741] = {.lex_state = 262, .external_lex_state = 4}, + [2742] = {.lex_state = 262, .external_lex_state = 4}, + [2743] = {.lex_state = 262, .external_lex_state = 4}, + [2744] = {.lex_state = 262, .external_lex_state = 4}, + [2745] = {.lex_state = 262, .external_lex_state = 4}, + [2746] = {.lex_state = 262, .external_lex_state = 4}, + [2747] = {.lex_state = 262, .external_lex_state = 4}, + [2748] = {.lex_state = 266, .external_lex_state = 4}, + [2749] = {.lex_state = 262, .external_lex_state = 4}, + [2750] = {.lex_state = 132, .external_lex_state = 4}, + [2751] = {.lex_state = 132, .external_lex_state = 4}, + [2752] = {.lex_state = 266, .external_lex_state = 4}, + [2753] = {.lex_state = 266, .external_lex_state = 4}, + [2754] = {.lex_state = 262, .external_lex_state = 4}, + [2755] = {.lex_state = 262, .external_lex_state = 4}, + [2756] = {.lex_state = 262, .external_lex_state = 4}, + [2757] = {.lex_state = 262, .external_lex_state = 4}, + [2758] = {.lex_state = 266, .external_lex_state = 4}, + [2759] = {.lex_state = 262, .external_lex_state = 4}, + [2760] = {.lex_state = 262, .external_lex_state = 4}, + [2761] = {.lex_state = 262, .external_lex_state = 4}, + [2762] = {.lex_state = 266, .external_lex_state = 4}, + [2763] = {.lex_state = 138, .external_lex_state = 4}, + [2764] = {.lex_state = 138, .external_lex_state = 4}, + [2765] = {.lex_state = 138, .external_lex_state = 4}, + [2766] = {.lex_state = 138, .external_lex_state = 4}, + [2767] = {.lex_state = 138, .external_lex_state = 4}, + [2768] = {.lex_state = 138, .external_lex_state = 4}, + [2769] = {.lex_state = 138, .external_lex_state = 4}, + [2770] = {.lex_state = 138, .external_lex_state = 4}, + [2771] = {.lex_state = 138, .external_lex_state = 4}, + [2772] = {.lex_state = 132, .external_lex_state = 4}, + [2773] = {.lex_state = 132, .external_lex_state = 4}, + [2774] = {.lex_state = 138, .external_lex_state = 4}, + [2775] = {.lex_state = 138, .external_lex_state = 4}, + [2776] = {.lex_state = 138, .external_lex_state = 4}, + [2777] = {.lex_state = 138, .external_lex_state = 4}, + [2778] = {.lex_state = 138, .external_lex_state = 4}, + [2779] = {.lex_state = 138, .external_lex_state = 4}, + [2780] = {.lex_state = 138, .external_lex_state = 4}, + [2781] = {.lex_state = 266, .external_lex_state = 4}, + [2782] = {.lex_state = 138, .external_lex_state = 4}, + [2783] = {.lex_state = 138, .external_lex_state = 4}, + [2784] = {.lex_state = 138, .external_lex_state = 4}, + [2785] = {.lex_state = 262, .external_lex_state = 4}, + [2786] = {.lex_state = 138, .external_lex_state = 4}, + [2787] = {.lex_state = 138, .external_lex_state = 4}, + [2788] = {.lex_state = 138, .external_lex_state = 4}, + [2789] = {.lex_state = 138, .external_lex_state = 4}, + [2790] = {.lex_state = 138, .external_lex_state = 4}, + [2791] = {.lex_state = 138, .external_lex_state = 4}, + [2792] = {.lex_state = 138, .external_lex_state = 4}, + [2793] = {.lex_state = 138, .external_lex_state = 4}, + [2794] = {.lex_state = 129, .external_lex_state = 5}, + [2795] = {.lex_state = 138, .external_lex_state = 4}, + [2796] = {.lex_state = 138, .external_lex_state = 4}, + [2797] = {.lex_state = 138, .external_lex_state = 4}, + [2798] = {.lex_state = 138, .external_lex_state = 4}, + [2799] = {.lex_state = 266, .external_lex_state = 4}, + [2800] = {.lex_state = 266, .external_lex_state = 4}, + [2801] = {.lex_state = 129, .external_lex_state = 5}, + [2802] = {.lex_state = 266, .external_lex_state = 4}, + [2803] = {.lex_state = 266, .external_lex_state = 4}, + [2804] = {.lex_state = 266, .external_lex_state = 4}, + [2805] = {.lex_state = 266, .external_lex_state = 4}, + [2806] = {.lex_state = 266, .external_lex_state = 4}, + [2807] = {.lex_state = 266, .external_lex_state = 4}, + [2808] = {.lex_state = 102, .external_lex_state = 4}, + [2809] = {.lex_state = 266, .external_lex_state = 4}, + [2810] = {.lex_state = 266, .external_lex_state = 4}, + [2811] = {.lex_state = 266, .external_lex_state = 4}, + [2812] = {.lex_state = 266, .external_lex_state = 4}, + [2813] = {.lex_state = 266, .external_lex_state = 4}, + [2814] = {.lex_state = 266, .external_lex_state = 4}, + [2815] = {.lex_state = 266, .external_lex_state = 4}, + [2816] = {.lex_state = 266, .external_lex_state = 4}, + [2817] = {.lex_state = 262, .external_lex_state = 4}, + [2818] = {.lex_state = 266, .external_lex_state = 4}, + [2819] = {.lex_state = 266, .external_lex_state = 4}, + [2820] = {.lex_state = 266, .external_lex_state = 4}, + [2821] = {.lex_state = 138, .external_lex_state = 4}, + [2822] = {.lex_state = 129, .external_lex_state = 5}, + [2823] = {.lex_state = 129, .external_lex_state = 5}, + [2824] = {.lex_state = 102, .external_lex_state = 4}, + [2825] = {.lex_state = 266, .external_lex_state = 4}, + [2826] = {.lex_state = 266, .external_lex_state = 4}, + [2827] = {.lex_state = 266, .external_lex_state = 4}, + [2828] = {.lex_state = 266, .external_lex_state = 4}, + [2829] = {.lex_state = 266, .external_lex_state = 4}, + [2830] = {.lex_state = 266, .external_lex_state = 4}, + [2831] = {.lex_state = 129, .external_lex_state = 5}, + [2832] = {.lex_state = 129, .external_lex_state = 5}, + [2833] = {.lex_state = 129, .external_lex_state = 5}, + [2834] = {.lex_state = 129, .external_lex_state = 5}, + [2835] = {.lex_state = 129, .external_lex_state = 5}, + [2836] = {.lex_state = 129, .external_lex_state = 5}, + [2837] = {.lex_state = 129, .external_lex_state = 5}, + [2838] = {.lex_state = 129, .external_lex_state = 5}, + [2839] = {.lex_state = 102, .external_lex_state = 4}, + [2840] = {.lex_state = 129, .external_lex_state = 5}, + [2841] = {.lex_state = 262, .external_lex_state = 4}, + [2842] = {.lex_state = 102, .external_lex_state = 4}, + [2843] = {.lex_state = 102, .external_lex_state = 4}, + [2844] = {.lex_state = 102, .external_lex_state = 4}, + [2845] = {.lex_state = 102, .external_lex_state = 4}, + [2846] = {.lex_state = 102, .external_lex_state = 4}, + [2847] = {.lex_state = 102, .external_lex_state = 4}, + [2848] = {.lex_state = 102, .external_lex_state = 4}, + [2849] = {.lex_state = 102, .external_lex_state = 4}, + [2850] = {.lex_state = 102, .external_lex_state = 4}, + [2851] = {.lex_state = 102, .external_lex_state = 4}, + [2852] = {.lex_state = 102, .external_lex_state = 4}, + [2853] = {.lex_state = 102, .external_lex_state = 4}, + [2854] = {.lex_state = 129, .external_lex_state = 5}, + [2855] = {.lex_state = 129, .external_lex_state = 5}, + [2856] = {.lex_state = 129, .external_lex_state = 5}, + [2857] = {.lex_state = 129, .external_lex_state = 5}, + [2858] = {.lex_state = 102, .external_lex_state = 4}, + [2859] = {.lex_state = 102, .external_lex_state = 4}, + [2860] = {.lex_state = 102, .external_lex_state = 4}, + [2861] = {.lex_state = 102, .external_lex_state = 4}, + [2862] = {.lex_state = 102, .external_lex_state = 4}, + [2863] = {.lex_state = 102, .external_lex_state = 4}, + [2864] = {.lex_state = 129, .external_lex_state = 5}, + [2865] = {.lex_state = 262, .external_lex_state = 4}, + [2866] = {.lex_state = 129, .external_lex_state = 5}, + [2867] = {.lex_state = 266, .external_lex_state = 4}, + [2868] = {.lex_state = 102, .external_lex_state = 4}, + [2869] = {.lex_state = 102, .external_lex_state = 4}, + [2870] = {.lex_state = 129, .external_lex_state = 5}, + [2871] = {.lex_state = 129, .external_lex_state = 5}, + [2872] = {.lex_state = 129, .external_lex_state = 5}, + [2873] = {.lex_state = 102, .external_lex_state = 4}, + [2874] = {.lex_state = 262, .external_lex_state = 4}, + [2875] = {.lex_state = 262, .external_lex_state = 4}, + [2876] = {.lex_state = 262, .external_lex_state = 4}, + [2877] = {.lex_state = 129, .external_lex_state = 5}, + [2878] = {.lex_state = 262, .external_lex_state = 4}, + [2879] = {.lex_state = 266, .external_lex_state = 4}, + [2880] = {.lex_state = 266, .external_lex_state = 4}, + [2881] = {.lex_state = 266, .external_lex_state = 4}, + [2882] = {.lex_state = 266, .external_lex_state = 4}, + [2883] = {.lex_state = 266, .external_lex_state = 4}, + [2884] = {.lex_state = 266, .external_lex_state = 4}, + [2885] = {.lex_state = 262, .external_lex_state = 4}, + [2886] = {.lex_state = 266, .external_lex_state = 4}, + [2887] = {.lex_state = 266, .external_lex_state = 4}, + [2888] = {.lex_state = 266, .external_lex_state = 4}, + [2889] = {.lex_state = 266, .external_lex_state = 4}, + [2890] = {.lex_state = 266, .external_lex_state = 4}, + [2891] = {.lex_state = 266, .external_lex_state = 4}, + [2892] = {.lex_state = 266, .external_lex_state = 4}, + [2893] = {.lex_state = 266, .external_lex_state = 4}, + [2894] = {.lex_state = 266, .external_lex_state = 4}, + [2895] = {.lex_state = 262, .external_lex_state = 4}, + [2896] = {.lex_state = 129, .external_lex_state = 5}, + [2897] = {.lex_state = 262, .external_lex_state = 4}, + [2898] = {.lex_state = 129, .external_lex_state = 5}, + [2899] = {.lex_state = 129, .external_lex_state = 5}, + [2900] = {.lex_state = 262, .external_lex_state = 4}, + [2901] = {.lex_state = 266, .external_lex_state = 4}, + [2902] = {.lex_state = 266, .external_lex_state = 4}, + [2903] = {.lex_state = 266, .external_lex_state = 4}, + [2904] = {.lex_state = 266, .external_lex_state = 4}, + [2905] = {.lex_state = 266, .external_lex_state = 4}, + [2906] = {.lex_state = 266, .external_lex_state = 4}, + [2907] = {.lex_state = 266, .external_lex_state = 4}, + [2908] = {.lex_state = 266, .external_lex_state = 4}, + [2909] = {.lex_state = 266, .external_lex_state = 4}, + [2910] = {.lex_state = 266, .external_lex_state = 4}, + [2911] = {.lex_state = 266, .external_lex_state = 4}, + [2912] = {.lex_state = 266, .external_lex_state = 4}, + [2913] = {.lex_state = 266, .external_lex_state = 4}, + [2914] = {.lex_state = 266, .external_lex_state = 4}, + [2915] = {.lex_state = 266, .external_lex_state = 4}, + [2916] = {.lex_state = 266, .external_lex_state = 4}, + [2917] = {.lex_state = 266, .external_lex_state = 4}, + [2918] = {.lex_state = 266, .external_lex_state = 4}, + [2919] = {.lex_state = 266, .external_lex_state = 4}, + [2920] = {.lex_state = 266, .external_lex_state = 4}, + [2921] = {.lex_state = 262, .external_lex_state = 4}, + [2922] = {.lex_state = 129, .external_lex_state = 5}, + [2923] = {.lex_state = 262, .external_lex_state = 4}, + [2924] = {.lex_state = 129, .external_lex_state = 5}, + [2925] = {.lex_state = 262, .external_lex_state = 4}, + [2926] = {.lex_state = 129, .external_lex_state = 5}, + [2927] = {.lex_state = 129, .external_lex_state = 5}, + [2928] = {.lex_state = 262, .external_lex_state = 4}, + [2929] = {.lex_state = 129, .external_lex_state = 5}, + [2930] = {.lex_state = 129, .external_lex_state = 5}, + [2931] = {.lex_state = 266, .external_lex_state = 4}, + [2932] = {.lex_state = 129, .external_lex_state = 5}, + [2933] = {.lex_state = 262, .external_lex_state = 5}, + [2934] = {.lex_state = 262, .external_lex_state = 5}, + [2935] = {.lex_state = 129, .external_lex_state = 5}, + [2936] = {.lex_state = 132, .external_lex_state = 4}, + [2937] = {.lex_state = 132, .external_lex_state = 4}, + [2938] = {.lex_state = 129, .external_lex_state = 5}, + [2939] = {.lex_state = 129, .external_lex_state = 5}, + [2940] = {.lex_state = 132, .external_lex_state = 4}, + [2941] = {.lex_state = 132, .external_lex_state = 4}, + [2942] = {.lex_state = 129, .external_lex_state = 5}, + [2943] = {.lex_state = 129, .external_lex_state = 5}, + [2944] = {.lex_state = 129, .external_lex_state = 5}, + [2945] = {.lex_state = 129, .external_lex_state = 5}, + [2946] = {.lex_state = 138, .external_lex_state = 4}, + [2947] = {.lex_state = 138, .external_lex_state = 4}, + [2948] = {.lex_state = 129, .external_lex_state = 5}, + [2949] = {.lex_state = 129, .external_lex_state = 5}, + [2950] = {.lex_state = 138, .external_lex_state = 4}, + [2951] = {.lex_state = 138, .external_lex_state = 4}, + [2952] = {.lex_state = 266, .external_lex_state = 4}, + [2953] = {.lex_state = 266, .external_lex_state = 4}, + [2954] = {.lex_state = 129, .external_lex_state = 5}, + [2955] = {.lex_state = 129, .external_lex_state = 5}, + [2956] = {.lex_state = 266, .external_lex_state = 4}, + [2957] = {.lex_state = 266, .external_lex_state = 4}, + [2958] = {.lex_state = 129, .external_lex_state = 5}, + [2959] = {.lex_state = 129, .external_lex_state = 5}, + [2960] = {.lex_state = 129, .external_lex_state = 5}, + [2961] = {.lex_state = 262, .external_lex_state = 5}, + [2962] = {.lex_state = 129, .external_lex_state = 5}, + [2963] = {.lex_state = 129, .external_lex_state = 5}, + [2964] = {.lex_state = 129, .external_lex_state = 5}, + [2965] = {.lex_state = 262, .external_lex_state = 4}, + [2966] = {.lex_state = 262, .external_lex_state = 4}, + [2967] = {.lex_state = 262, .external_lex_state = 4}, + [2968] = {.lex_state = 262, .external_lex_state = 4}, + [2969] = {.lex_state = 266, .external_lex_state = 4}, + [2970] = {.lex_state = 266, .external_lex_state = 4}, + [2971] = {.lex_state = 266, .external_lex_state = 4}, + [2972] = {.lex_state = 266, .external_lex_state = 4}, + [2973] = {.lex_state = 262, .external_lex_state = 4}, + [2974] = {.lex_state = 129, .external_lex_state = 5}, + [2975] = {.lex_state = 129, .external_lex_state = 5}, + [2976] = {.lex_state = 129, .external_lex_state = 5}, + [2977] = {.lex_state = 129, .external_lex_state = 5}, + [2978] = {.lex_state = 129, .external_lex_state = 5}, + [2979] = {.lex_state = 129, .external_lex_state = 5}, + [2980] = {.lex_state = 129, .external_lex_state = 5}, + [2981] = {.lex_state = 129, .external_lex_state = 5}, + [2982] = {.lex_state = 129, .external_lex_state = 5}, + [2983] = {.lex_state = 129, .external_lex_state = 5}, + [2984] = {.lex_state = 138, .external_lex_state = 4}, + [2985] = {.lex_state = 138, .external_lex_state = 4}, + [2986] = {.lex_state = 129, .external_lex_state = 5}, + [2987] = {.lex_state = 129, .external_lex_state = 5}, + [2988] = {.lex_state = 138, .external_lex_state = 4}, + [2989] = {.lex_state = 138, .external_lex_state = 4}, + [2990] = {.lex_state = 129, .external_lex_state = 5}, + [2991] = {.lex_state = 129, .external_lex_state = 5}, + [2992] = {.lex_state = 129, .external_lex_state = 5}, + [2993] = {.lex_state = 266, .external_lex_state = 4}, + [2994] = {.lex_state = 262, .external_lex_state = 4}, + [2995] = {.lex_state = 262, .external_lex_state = 4}, + [2996] = {.lex_state = 262, .external_lex_state = 4}, + [2997] = {.lex_state = 266, .external_lex_state = 4}, + [2998] = {.lex_state = 266, .external_lex_state = 4}, + [2999] = {.lex_state = 266, .external_lex_state = 4}, + [3000] = {.lex_state = 262, .external_lex_state = 4}, + [3001] = {.lex_state = 262, .external_lex_state = 4}, + [3002] = {.lex_state = 129, .external_lex_state = 5}, + [3003] = {.lex_state = 129, .external_lex_state = 5}, + [3004] = {.lex_state = 129, .external_lex_state = 5}, + [3005] = {.lex_state = 129, .external_lex_state = 5}, + [3006] = {.lex_state = 129, .external_lex_state = 5}, + [3007] = {.lex_state = 129, .external_lex_state = 5}, + [3008] = {.lex_state = 102, .external_lex_state = 4}, + [3009] = {.lex_state = 141, .external_lex_state = 4}, + [3010] = {.lex_state = 141, .external_lex_state = 4}, + [3011] = {.lex_state = 141, .external_lex_state = 4}, + [3012] = {.lex_state = 141, .external_lex_state = 4}, + [3013] = {.lex_state = 262, .external_lex_state = 4}, + [3014] = {.lex_state = 262, .external_lex_state = 4}, + [3015] = {.lex_state = 262, .external_lex_state = 4}, + [3016] = {.lex_state = 262, .external_lex_state = 4}, + [3017] = {.lex_state = 141, .external_lex_state = 4}, + [3018] = {.lex_state = 141, .external_lex_state = 4}, + [3019] = {.lex_state = 141, .external_lex_state = 4}, + [3020] = {.lex_state = 141, .external_lex_state = 4}, + [3021] = {.lex_state = 102, .external_lex_state = 4}, + [3022] = {.lex_state = 262, .external_lex_state = 4}, + [3023] = {.lex_state = 129, .external_lex_state = 4}, + [3024] = {.lex_state = 262, .external_lex_state = 4}, + [3025] = {.lex_state = 129, .external_lex_state = 4}, + [3026] = {.lex_state = 129, .external_lex_state = 4}, + [3027] = {.lex_state = 262, .external_lex_state = 4}, + [3028] = {.lex_state = 262, .external_lex_state = 4}, + [3029] = {.lex_state = 262, .external_lex_state = 4}, + [3030] = {.lex_state = 262, .external_lex_state = 4}, + [3031] = {.lex_state = 262, .external_lex_state = 4}, + [3032] = {.lex_state = 262, .external_lex_state = 4}, + [3033] = {.lex_state = 262, .external_lex_state = 4}, + [3034] = {.lex_state = 262, .external_lex_state = 4}, + [3035] = {.lex_state = 262, .external_lex_state = 4}, + [3036] = {.lex_state = 129, .external_lex_state = 4}, + [3037] = {.lex_state = 262, .external_lex_state = 4}, + [3038] = {.lex_state = 262, .external_lex_state = 4}, + [3039] = {.lex_state = 262, .external_lex_state = 4}, + [3040] = {.lex_state = 262, .external_lex_state = 4}, + [3041] = {.lex_state = 262, .external_lex_state = 4}, + [3042] = {.lex_state = 262, .external_lex_state = 4}, + [3043] = {.lex_state = 262, .external_lex_state = 4}, + [3044] = {.lex_state = 262, .external_lex_state = 4}, + [3045] = {.lex_state = 262, .external_lex_state = 4}, + [3046] = {.lex_state = 262, .external_lex_state = 4}, + [3047] = {.lex_state = 262, .external_lex_state = 4}, + [3048] = {.lex_state = 262, .external_lex_state = 4}, + [3049] = {.lex_state = 262, .external_lex_state = 4}, + [3050] = {.lex_state = 262, .external_lex_state = 4}, + [3051] = {.lex_state = 262, .external_lex_state = 4}, + [3052] = {.lex_state = 262, .external_lex_state = 4}, + [3053] = {.lex_state = 129, .external_lex_state = 4}, + [3054] = {.lex_state = 129, .external_lex_state = 4}, + [3055] = {.lex_state = 262, .external_lex_state = 4}, + [3056] = {.lex_state = 129, .external_lex_state = 4}, + [3057] = {.lex_state = 129, .external_lex_state = 4}, + [3058] = {.lex_state = 129, .external_lex_state = 4}, + [3059] = {.lex_state = 129, .external_lex_state = 4}, + [3060] = {.lex_state = 262, .external_lex_state = 4}, + [3061] = {.lex_state = 262, .external_lex_state = 4}, + [3062] = {.lex_state = 129, .external_lex_state = 4}, + [3063] = {.lex_state = 262, .external_lex_state = 4}, + [3064] = {.lex_state = 262, .external_lex_state = 4}, + [3065] = {.lex_state = 262, .external_lex_state = 4}, + [3066] = {.lex_state = 262, .external_lex_state = 4}, + [3067] = {.lex_state = 262, .external_lex_state = 4}, + [3068] = {.lex_state = 129, .external_lex_state = 4}, + [3069] = {.lex_state = 102, .external_lex_state = 4}, + [3070] = {.lex_state = 129, .external_lex_state = 4}, + [3071] = {.lex_state = 262, .external_lex_state = 4}, + [3072] = {.lex_state = 102, .external_lex_state = 4}, + [3073] = {.lex_state = 262, .external_lex_state = 4}, + [3074] = {.lex_state = 262, .external_lex_state = 4}, + [3075] = {.lex_state = 262, .external_lex_state = 4}, + [3076] = {.lex_state = 141, .external_lex_state = 4}, + [3077] = {.lex_state = 262, .external_lex_state = 4}, + [3078] = {.lex_state = 262, .external_lex_state = 4}, + [3079] = {.lex_state = 262, .external_lex_state = 4}, + [3080] = {.lex_state = 129, .external_lex_state = 4}, + [3081] = {.lex_state = 262, .external_lex_state = 4}, + [3082] = {.lex_state = 262, .external_lex_state = 4}, + [3083] = {.lex_state = 262, .external_lex_state = 4}, + [3084] = {.lex_state = 102, .external_lex_state = 4}, + [3085] = {.lex_state = 102, .external_lex_state = 4}, + [3086] = {.lex_state = 262, .external_lex_state = 4}, + [3087] = {.lex_state = 262, .external_lex_state = 4}, + [3088] = {.lex_state = 262, .external_lex_state = 4}, + [3089] = {.lex_state = 262, .external_lex_state = 4}, + [3090] = {.lex_state = 129, .external_lex_state = 4}, + [3091] = {.lex_state = 262, .external_lex_state = 4}, + [3092] = {.lex_state = 262, .external_lex_state = 4}, + [3093] = {.lex_state = 262, .external_lex_state = 4}, + [3094] = {.lex_state = 262, .external_lex_state = 4}, + [3095] = {.lex_state = 262, .external_lex_state = 4}, + [3096] = {.lex_state = 262, .external_lex_state = 4}, + [3097] = {.lex_state = 262, .external_lex_state = 4}, + [3098] = {.lex_state = 262, .external_lex_state = 4}, + [3099] = {.lex_state = 262, .external_lex_state = 4}, + [3100] = {.lex_state = 262, .external_lex_state = 4}, + [3101] = {.lex_state = 262, .external_lex_state = 4}, + [3102] = {.lex_state = 262, .external_lex_state = 4}, + [3103] = {.lex_state = 262, .external_lex_state = 4}, + [3104] = {.lex_state = 262, .external_lex_state = 4}, + [3105] = {.lex_state = 262, .external_lex_state = 4}, + [3106] = {.lex_state = 262, .external_lex_state = 4}, + [3107] = {.lex_state = 262, .external_lex_state = 4}, + [3108] = {.lex_state = 262, .external_lex_state = 4}, + [3109] = {.lex_state = 262, .external_lex_state = 4}, + [3110] = {.lex_state = 262, .external_lex_state = 4}, + [3111] = {.lex_state = 141, .external_lex_state = 4}, + [3112] = {.lex_state = 141, .external_lex_state = 4}, + [3113] = {.lex_state = 141, .external_lex_state = 4}, + [3114] = {.lex_state = 141, .external_lex_state = 4}, + [3115] = {.lex_state = 262, .external_lex_state = 4}, + [3116] = {.lex_state = 262, .external_lex_state = 4}, + [3117] = {.lex_state = 262, .external_lex_state = 4}, + [3118] = {.lex_state = 262, .external_lex_state = 4}, + [3119] = {.lex_state = 262, .external_lex_state = 4}, + [3120] = {.lex_state = 141, .external_lex_state = 4}, + [3121] = {.lex_state = 262, .external_lex_state = 4}, + [3122] = {.lex_state = 141, .external_lex_state = 4}, + [3123] = {.lex_state = 141, .external_lex_state = 4}, + [3124] = {.lex_state = 141, .external_lex_state = 4}, + [3125] = {.lex_state = 262, .external_lex_state = 4}, + [3126] = {.lex_state = 141, .external_lex_state = 4}, + [3127] = {.lex_state = 141, .external_lex_state = 4}, + [3128] = {.lex_state = 141, .external_lex_state = 4}, + [3129] = {.lex_state = 141, .external_lex_state = 4}, + [3130] = {.lex_state = 141, .external_lex_state = 4}, + [3131] = {.lex_state = 141, .external_lex_state = 4}, + [3132] = {.lex_state = 141, .external_lex_state = 4}, + [3133] = {.lex_state = 141, .external_lex_state = 4}, + [3134] = {.lex_state = 262, .external_lex_state = 4}, + [3135] = {.lex_state = 129, .external_lex_state = 4}, + [3136] = {.lex_state = 129, .external_lex_state = 4}, + [3137] = {.lex_state = 262, .external_lex_state = 4}, + [3138] = {.lex_state = 129, .external_lex_state = 4}, + [3139] = {.lex_state = 129, .external_lex_state = 4}, + [3140] = {.lex_state = 262, .external_lex_state = 4}, + [3141] = {.lex_state = 262, .external_lex_state = 4}, + [3142] = {.lex_state = 262, .external_lex_state = 4}, + [3143] = {.lex_state = 262, .external_lex_state = 4}, + [3144] = {.lex_state = 262, .external_lex_state = 4}, + [3145] = {.lex_state = 262, .external_lex_state = 4}, + [3146] = {.lex_state = 141, .external_lex_state = 4}, + [3147] = {.lex_state = 262, .external_lex_state = 4}, + [3148] = {.lex_state = 262, .external_lex_state = 4}, + [3149] = {.lex_state = 262, .external_lex_state = 4}, + [3150] = {.lex_state = 262, .external_lex_state = 4}, + [3151] = {.lex_state = 262, .external_lex_state = 4}, + [3152] = {.lex_state = 262, .external_lex_state = 4}, + [3153] = {.lex_state = 262, .external_lex_state = 4}, + [3154] = {.lex_state = 262, .external_lex_state = 4}, + [3155] = {.lex_state = 141, .external_lex_state = 4}, + [3156] = {.lex_state = 262, .external_lex_state = 4}, + [3157] = {.lex_state = 141, .external_lex_state = 4}, + [3158] = {.lex_state = 262, .external_lex_state = 4}, + [3159] = {.lex_state = 141, .external_lex_state = 4}, + [3160] = {.lex_state = 262, .external_lex_state = 4}, + [3161] = {.lex_state = 262, .external_lex_state = 4}, + [3162] = {.lex_state = 262, .external_lex_state = 4}, + [3163] = {.lex_state = 141, .external_lex_state = 4}, + [3164] = {.lex_state = 262, .external_lex_state = 4}, + [3165] = {.lex_state = 262, .external_lex_state = 4}, + [3166] = {.lex_state = 262, .external_lex_state = 4}, + [3167] = {.lex_state = 141, .external_lex_state = 4}, + [3168] = {.lex_state = 102, .external_lex_state = 4}, + [3169] = {.lex_state = 102, .external_lex_state = 4}, + [3170] = {.lex_state = 102, .external_lex_state = 4}, + [3171] = {.lex_state = 102, .external_lex_state = 4}, + [3172] = {.lex_state = 102, .external_lex_state = 4}, + [3173] = {.lex_state = 102, .external_lex_state = 4}, + [3174] = {.lex_state = 102, .external_lex_state = 4}, + [3175] = {.lex_state = 102, .external_lex_state = 4}, + [3176] = {.lex_state = 102, .external_lex_state = 4}, + [3177] = {.lex_state = 102, .external_lex_state = 4}, + [3178] = {.lex_state = 102, .external_lex_state = 4}, + [3179] = {.lex_state = 102, .external_lex_state = 4}, + [3180] = {.lex_state = 102, .external_lex_state = 4}, + [3181] = {.lex_state = 262, .external_lex_state = 4}, + [3182] = {.lex_state = 102, .external_lex_state = 4}, + [3183] = {.lex_state = 102, .external_lex_state = 4}, + [3184] = {.lex_state = 102, .external_lex_state = 4}, + [3185] = {.lex_state = 102, .external_lex_state = 4}, + [3186] = {.lex_state = 102, .external_lex_state = 4}, + [3187] = {.lex_state = 102, .external_lex_state = 4}, + [3188] = {.lex_state = 102, .external_lex_state = 4}, + [3189] = {.lex_state = 102, .external_lex_state = 4}, + [3190] = {.lex_state = 262, .external_lex_state = 4}, + [3191] = {.lex_state = 262, .external_lex_state = 4}, + [3192] = {.lex_state = 262, .external_lex_state = 4}, + [3193] = {.lex_state = 262, .external_lex_state = 4}, + [3194] = {.lex_state = 262, .external_lex_state = 4}, + [3195] = {.lex_state = 262, .external_lex_state = 4}, + [3196] = {.lex_state = 262, .external_lex_state = 4}, + [3197] = {.lex_state = 262, .external_lex_state = 4}, + [3198] = {.lex_state = 262, .external_lex_state = 4}, + [3199] = {.lex_state = 141, .external_lex_state = 4}, + [3200] = {.lex_state = 262, .external_lex_state = 4}, + [3201] = {.lex_state = 141, .external_lex_state = 4}, + [3202] = {.lex_state = 141, .external_lex_state = 4}, + [3203] = {.lex_state = 141, .external_lex_state = 4}, + [3204] = {.lex_state = 141, .external_lex_state = 4}, + [3205] = {.lex_state = 141, .external_lex_state = 4}, + [3206] = {.lex_state = 141, .external_lex_state = 4}, + [3207] = {.lex_state = 102, .external_lex_state = 4}, + [3208] = {.lex_state = 102, .external_lex_state = 4}, + [3209] = {.lex_state = 102, .external_lex_state = 4}, + [3210] = {.lex_state = 102, .external_lex_state = 4}, + [3211] = {.lex_state = 102, .external_lex_state = 4}, + [3212] = {.lex_state = 262, .external_lex_state = 4}, + [3213] = {.lex_state = 102, .external_lex_state = 4}, + [3214] = {.lex_state = 102, .external_lex_state = 4}, + [3215] = {.lex_state = 102, .external_lex_state = 4}, + [3216] = {.lex_state = 102, .external_lex_state = 4}, + [3217] = {.lex_state = 102, .external_lex_state = 4}, + [3218] = {.lex_state = 102, .external_lex_state = 4}, + [3219] = {.lex_state = 102, .external_lex_state = 4}, + [3220] = {.lex_state = 102, .external_lex_state = 4}, + [3221] = {.lex_state = 102, .external_lex_state = 4}, + [3222] = {.lex_state = 102, .external_lex_state = 4}, + [3223] = {.lex_state = 102, .external_lex_state = 4}, + [3224] = {.lex_state = 102, .external_lex_state = 4}, + [3225] = {.lex_state = 141, .external_lex_state = 4}, + [3226] = {.lex_state = 102, .external_lex_state = 4}, + [3227] = {.lex_state = 102, .external_lex_state = 4}, + [3228] = {.lex_state = 102, .external_lex_state = 4}, + [3229] = {.lex_state = 102, .external_lex_state = 4}, + [3230] = {.lex_state = 102, .external_lex_state = 4}, + [3231] = {.lex_state = 102, .external_lex_state = 4}, + [3232] = {.lex_state = 102, .external_lex_state = 4}, + [3233] = {.lex_state = 102, .external_lex_state = 4}, + [3234] = {.lex_state = 102, .external_lex_state = 4}, + [3235] = {.lex_state = 102, .external_lex_state = 4}, + [3236] = {.lex_state = 102, .external_lex_state = 4}, + [3237] = {.lex_state = 102, .external_lex_state = 4}, + [3238] = {.lex_state = 102, .external_lex_state = 4}, + [3239] = {.lex_state = 102, .external_lex_state = 4}, + [3240] = {.lex_state = 102, .external_lex_state = 4}, + [3241] = {.lex_state = 102, .external_lex_state = 4}, + [3242] = {.lex_state = 102, .external_lex_state = 4}, + [3243] = {.lex_state = 102, .external_lex_state = 4}, + [3244] = {.lex_state = 102, .external_lex_state = 4}, + [3245] = {.lex_state = 102, .external_lex_state = 4}, + [3246] = {.lex_state = 102, .external_lex_state = 4}, + [3247] = {.lex_state = 102, .external_lex_state = 4}, + [3248] = {.lex_state = 102, .external_lex_state = 4}, + [3249] = {.lex_state = 102, .external_lex_state = 4}, + [3250] = {.lex_state = 102, .external_lex_state = 4}, + [3251] = {.lex_state = 102, .external_lex_state = 4}, + [3252] = {.lex_state = 102, .external_lex_state = 4}, + [3253] = {.lex_state = 102, .external_lex_state = 4}, + [3254] = {.lex_state = 102, .external_lex_state = 4}, + [3255] = {.lex_state = 102, .external_lex_state = 4}, + [3256] = {.lex_state = 102, .external_lex_state = 4}, + [3257] = {.lex_state = 129, .external_lex_state = 4}, + [3258] = {.lex_state = 129, .external_lex_state = 4}, + [3259] = {.lex_state = 262, .external_lex_state = 4}, + [3260] = {.lex_state = 262, .external_lex_state = 4}, + [3261] = {.lex_state = 129, .external_lex_state = 4}, + [3262] = {.lex_state = 129, .external_lex_state = 4}, + [3263] = {.lex_state = 141, .external_lex_state = 4}, + [3264] = {.lex_state = 262, .external_lex_state = 4}, + [3265] = {.lex_state = 262, .external_lex_state = 4}, + [3266] = {.lex_state = 262, .external_lex_state = 4}, + [3267] = {.lex_state = 141, .external_lex_state = 4}, + [3268] = {.lex_state = 129, .external_lex_state = 4}, + [3269] = {.lex_state = 129, .external_lex_state = 4}, + [3270] = {.lex_state = 129, .external_lex_state = 4}, + [3271] = {.lex_state = 129, .external_lex_state = 4}, + [3272] = {.lex_state = 129, .external_lex_state = 4}, + [3273] = {.lex_state = 129, .external_lex_state = 4}, + [3274] = {.lex_state = 129, .external_lex_state = 4}, + [3275] = {.lex_state = 129, .external_lex_state = 4}, + [3276] = {.lex_state = 129, .external_lex_state = 4}, + [3277] = {.lex_state = 129, .external_lex_state = 4}, + [3278] = {.lex_state = 129, .external_lex_state = 4}, + [3279] = {.lex_state = 129, .external_lex_state = 4}, + [3280] = {.lex_state = 129, .external_lex_state = 4}, + [3281] = {.lex_state = 129, .external_lex_state = 4}, + [3282] = {.lex_state = 129, .external_lex_state = 4}, + [3283] = {.lex_state = 129, .external_lex_state = 4}, + [3284] = {.lex_state = 129, .external_lex_state = 4}, + [3285] = {.lex_state = 129, .external_lex_state = 4}, + [3286] = {.lex_state = 129, .external_lex_state = 4}, + [3287] = {.lex_state = 262, .external_lex_state = 4}, + [3288] = {.lex_state = 129, .external_lex_state = 4}, + [3289] = {.lex_state = 262, .external_lex_state = 4}, + [3290] = {.lex_state = 129, .external_lex_state = 4}, + [3291] = {.lex_state = 262, .external_lex_state = 4}, + [3292] = {.lex_state = 262, .external_lex_state = 4}, + [3293] = {.lex_state = 262, .external_lex_state = 4}, + [3294] = {.lex_state = 262, .external_lex_state = 4}, + [3295] = {.lex_state = 262, .external_lex_state = 4}, + [3296] = {.lex_state = 262, .external_lex_state = 4}, + [3297] = {.lex_state = 129, .external_lex_state = 4}, + [3298] = {.lex_state = 262, .external_lex_state = 4}, + [3299] = {.lex_state = 129, .external_lex_state = 4}, + [3300] = {.lex_state = 129, .external_lex_state = 4}, + [3301] = {.lex_state = 129, .external_lex_state = 4}, + [3302] = {.lex_state = 262, .external_lex_state = 4}, + [3303] = {.lex_state = 129, .external_lex_state = 4}, + [3304] = {.lex_state = 129, .external_lex_state = 4}, + [3305] = {.lex_state = 262, .external_lex_state = 4}, + [3306] = {.lex_state = 262, .external_lex_state = 4}, + [3307] = {.lex_state = 129, .external_lex_state = 4}, + [3308] = {.lex_state = 129, .external_lex_state = 4}, + [3309] = {.lex_state = 262, .external_lex_state = 4}, + [3310] = {.lex_state = 262, .external_lex_state = 4}, + [3311] = {.lex_state = 129, .external_lex_state = 4}, + [3312] = {.lex_state = 262, .external_lex_state = 4}, + [3313] = {.lex_state = 262, .external_lex_state = 4}, + [3314] = {.lex_state = 129, .external_lex_state = 4}, + [3315] = {.lex_state = 262, .external_lex_state = 4}, + [3316] = {.lex_state = 129, .external_lex_state = 4}, + [3317] = {.lex_state = 129, .external_lex_state = 4}, + [3318] = {.lex_state = 129, .external_lex_state = 4}, + [3319] = {.lex_state = 262, .external_lex_state = 4}, + [3320] = {.lex_state = 129, .external_lex_state = 4}, + [3321] = {.lex_state = 262, .external_lex_state = 4}, + [3322] = {.lex_state = 262, .external_lex_state = 4}, + [3323] = {.lex_state = 129, .external_lex_state = 4}, + [3324] = {.lex_state = 262, .external_lex_state = 4}, + [3325] = {.lex_state = 129, .external_lex_state = 4}, + [3326] = {.lex_state = 129, .external_lex_state = 4}, + [3327] = {.lex_state = 129, .external_lex_state = 4}, + [3328] = {.lex_state = 129, .external_lex_state = 4}, + [3329] = {.lex_state = 129, .external_lex_state = 4}, + [3330] = {.lex_state = 129, .external_lex_state = 4}, + [3331] = {.lex_state = 129, .external_lex_state = 4}, + [3332] = {.lex_state = 129, .external_lex_state = 4}, + [3333] = {.lex_state = 129, .external_lex_state = 4}, + [3334] = {.lex_state = 129, .external_lex_state = 4}, + [3335] = {.lex_state = 129, .external_lex_state = 4}, + [3336] = {.lex_state = 129, .external_lex_state = 4}, + [3337] = {.lex_state = 129, .external_lex_state = 4}, + [3338] = {.lex_state = 129, .external_lex_state = 4}, + [3339] = {.lex_state = 129, .external_lex_state = 4}, + [3340] = {.lex_state = 129, .external_lex_state = 4}, + [3341] = {.lex_state = 129, .external_lex_state = 4}, + [3342] = {.lex_state = 129, .external_lex_state = 4}, + [3343] = {.lex_state = 129, .external_lex_state = 4}, + [3344] = {.lex_state = 129, .external_lex_state = 4}, + [3345] = {.lex_state = 102, .external_lex_state = 4}, + [3346] = {.lex_state = 129, .external_lex_state = 4}, + [3347] = {.lex_state = 102, .external_lex_state = 4}, + [3348] = {.lex_state = 262, .external_lex_state = 4}, + [3349] = {.lex_state = 129, .external_lex_state = 4}, + [3350] = {.lex_state = 129, .external_lex_state = 4}, + [3351] = {.lex_state = 102, .external_lex_state = 4}, + [3352] = {.lex_state = 262, .external_lex_state = 4}, + [3353] = {.lex_state = 129, .external_lex_state = 4}, + [3354] = {.lex_state = 129, .external_lex_state = 4}, + [3355] = {.lex_state = 129, .external_lex_state = 4}, + [3356] = {.lex_state = 129, .external_lex_state = 4}, + [3357] = {.lex_state = 129, .external_lex_state = 4}, + [3358] = {.lex_state = 129, .external_lex_state = 4}, + [3359] = {.lex_state = 129, .external_lex_state = 4}, + [3360] = {.lex_state = 129, .external_lex_state = 4}, + [3361] = {.lex_state = 129, .external_lex_state = 4}, + [3362] = {.lex_state = 129, .external_lex_state = 4}, + [3363] = {.lex_state = 129, .external_lex_state = 4}, + [3364] = {.lex_state = 129, .external_lex_state = 4}, + [3365] = {.lex_state = 129, .external_lex_state = 4}, + [3366] = {.lex_state = 129, .external_lex_state = 4}, + [3367] = {.lex_state = 129, .external_lex_state = 4}, + [3368] = {.lex_state = 262, .external_lex_state = 4}, + [3369] = {.lex_state = 262, .external_lex_state = 4}, + [3370] = {.lex_state = 262, .external_lex_state = 4}, + [3371] = {.lex_state = 262, .external_lex_state = 4}, + [3372] = {.lex_state = 262, .external_lex_state = 4}, + [3373] = {.lex_state = 262, .external_lex_state = 4}, + [3374] = {.lex_state = 262, .external_lex_state = 4}, + [3375] = {.lex_state = 262, .external_lex_state = 4}, + [3376] = {.lex_state = 262, .external_lex_state = 4}, + [3377] = {.lex_state = 262, .external_lex_state = 4}, + [3378] = {.lex_state = 262, .external_lex_state = 4}, + [3379] = {.lex_state = 262, .external_lex_state = 4}, + [3380] = {.lex_state = 262, .external_lex_state = 4}, + [3381] = {.lex_state = 262, .external_lex_state = 4}, + [3382] = {.lex_state = 262, .external_lex_state = 4}, + [3383] = {.lex_state = 262, .external_lex_state = 4}, + [3384] = {.lex_state = 262, .external_lex_state = 4}, + [3385] = {.lex_state = 262, .external_lex_state = 4}, + [3386] = {.lex_state = 262, .external_lex_state = 4}, + [3387] = {.lex_state = 262, .external_lex_state = 4}, + [3388] = {.lex_state = 102, .external_lex_state = 4}, + [3389] = {.lex_state = 262, .external_lex_state = 4}, + [3390] = {.lex_state = 262, .external_lex_state = 4}, + [3391] = {.lex_state = 262, .external_lex_state = 4}, + [3392] = {.lex_state = 102, .external_lex_state = 4}, + [3393] = {.lex_state = 262, .external_lex_state = 4}, + [3394] = {.lex_state = 262, .external_lex_state = 4}, + [3395] = {.lex_state = 50, .external_lex_state = 6}, + [3396] = {.lex_state = 50, .external_lex_state = 6}, + [3397] = {.lex_state = 50, .external_lex_state = 6}, + [3398] = {.lex_state = 50, .external_lex_state = 6}, + [3399] = {.lex_state = 50, .external_lex_state = 6}, + [3400] = {.lex_state = 50, .external_lex_state = 6}, + [3401] = {.lex_state = 50, .external_lex_state = 6}, + [3402] = {.lex_state = 50, .external_lex_state = 6}, + [3403] = {.lex_state = 50, .external_lex_state = 6}, + [3404] = {.lex_state = 50, .external_lex_state = 6}, + [3405] = {.lex_state = 50, .external_lex_state = 6}, + [3406] = {.lex_state = 50, .external_lex_state = 6}, + [3407] = {.lex_state = 50, .external_lex_state = 6}, + [3408] = {.lex_state = 50, .external_lex_state = 6}, + [3409] = {.lex_state = 50, .external_lex_state = 6}, + [3410] = {.lex_state = 50, .external_lex_state = 6}, + [3411] = {.lex_state = 50, .external_lex_state = 6}, + [3412] = {.lex_state = 50, .external_lex_state = 6}, + [3413] = {.lex_state = 50, .external_lex_state = 6}, + [3414] = {.lex_state = 50, .external_lex_state = 6}, + [3415] = {.lex_state = 50, .external_lex_state = 6}, + [3416] = {.lex_state = 50, .external_lex_state = 6}, + [3417] = {.lex_state = 50, .external_lex_state = 6}, + [3418] = {.lex_state = 50, .external_lex_state = 6}, + [3419] = {.lex_state = 50, .external_lex_state = 6}, + [3420] = {.lex_state = 50, .external_lex_state = 6}, + [3421] = {.lex_state = 50, .external_lex_state = 6}, + [3422] = {.lex_state = 50, .external_lex_state = 6}, + [3423] = {.lex_state = 50, .external_lex_state = 6}, + [3424] = {.lex_state = 50, .external_lex_state = 6}, + [3425] = {.lex_state = 50, .external_lex_state = 6}, + [3426] = {.lex_state = 50, .external_lex_state = 6}, + [3427] = {.lex_state = 50, .external_lex_state = 6}, + [3428] = {.lex_state = 50, .external_lex_state = 6}, + [3429] = {.lex_state = 50, .external_lex_state = 6}, + [3430] = {.lex_state = 50, .external_lex_state = 6}, + [3431] = {.lex_state = 102, .external_lex_state = 6}, + [3432] = {.lex_state = 102, .external_lex_state = 6}, + [3433] = {.lex_state = 102, .external_lex_state = 6}, + [3434] = {.lex_state = 102, .external_lex_state = 6}, + [3435] = {.lex_state = 102, .external_lex_state = 6}, + [3436] = {.lex_state = 102, .external_lex_state = 6}, + [3437] = {.lex_state = 102, .external_lex_state = 6}, + [3438] = {.lex_state = 102, .external_lex_state = 6}, + [3439] = {.lex_state = 102, .external_lex_state = 6}, + [3440] = {.lex_state = 102, .external_lex_state = 6}, + [3441] = {.lex_state = 102, .external_lex_state = 6}, + [3442] = {.lex_state = 102, .external_lex_state = 6}, + [3443] = {.lex_state = 102, .external_lex_state = 6}, + [3444] = {.lex_state = 102, .external_lex_state = 6}, + [3445] = {.lex_state = 102, .external_lex_state = 6}, + [3446] = {.lex_state = 102, .external_lex_state = 6}, + [3447] = {.lex_state = 102, .external_lex_state = 6}, + [3448] = {.lex_state = 102, .external_lex_state = 6}, + [3449] = {.lex_state = 102, .external_lex_state = 6}, + [3450] = {.lex_state = 102, .external_lex_state = 6}, + [3451] = {.lex_state = 102, .external_lex_state = 6}, + [3452] = {.lex_state = 102, .external_lex_state = 6}, + [3453] = {.lex_state = 102, .external_lex_state = 6}, + [3454] = {.lex_state = 102, .external_lex_state = 6}, + [3455] = {.lex_state = 102, .external_lex_state = 6}, + [3456] = {.lex_state = 102, .external_lex_state = 6}, + [3457] = {.lex_state = 102, .external_lex_state = 6}, + [3458] = {.lex_state = 102, .external_lex_state = 6}, + [3459] = {.lex_state = 102, .external_lex_state = 6}, + [3460] = {.lex_state = 102, .external_lex_state = 6}, + [3461] = {.lex_state = 102, .external_lex_state = 6}, + [3462] = {.lex_state = 102, .external_lex_state = 6}, + [3463] = {.lex_state = 102, .external_lex_state = 6}, + [3464] = {.lex_state = 102, .external_lex_state = 6}, + [3465] = {.lex_state = 102, .external_lex_state = 6}, + [3466] = {.lex_state = 102, .external_lex_state = 6}, + [3467] = {.lex_state = 102, .external_lex_state = 6}, + [3468] = {.lex_state = 102, .external_lex_state = 6}, + [3469] = {.lex_state = 102, .external_lex_state = 6}, + [3470] = {.lex_state = 102, .external_lex_state = 6}, + [3471] = {.lex_state = 102, .external_lex_state = 6}, + [3472] = {.lex_state = 102, .external_lex_state = 6}, + [3473] = {.lex_state = 102, .external_lex_state = 6}, + [3474] = {.lex_state = 102, .external_lex_state = 6}, + [3475] = {.lex_state = 102, .external_lex_state = 6}, + [3476] = {.lex_state = 102, .external_lex_state = 6}, + [3477] = {.lex_state = 102, .external_lex_state = 6}, + [3478] = {.lex_state = 102, .external_lex_state = 6}, + [3479] = {.lex_state = 102, .external_lex_state = 6}, + [3480] = {.lex_state = 102, .external_lex_state = 6}, + [3481] = {.lex_state = 102, .external_lex_state = 6}, + [3482] = {.lex_state = 102, .external_lex_state = 6}, + [3483] = {.lex_state = 102, .external_lex_state = 6}, + [3484] = {.lex_state = 102, .external_lex_state = 6}, + [3485] = {.lex_state = 102, .external_lex_state = 6}, + [3486] = {.lex_state = 102, .external_lex_state = 6}, + [3487] = {.lex_state = 102, .external_lex_state = 6}, + [3488] = {.lex_state = 102, .external_lex_state = 6}, + [3489] = {.lex_state = 102, .external_lex_state = 6}, + [3490] = {.lex_state = 102, .external_lex_state = 6}, + [3491] = {.lex_state = 102, .external_lex_state = 6}, + [3492] = {.lex_state = 102, .external_lex_state = 6}, + [3493] = {.lex_state = 102, .external_lex_state = 6}, + [3494] = {.lex_state = 102, .external_lex_state = 6}, + [3495] = {.lex_state = 102, .external_lex_state = 6}, + [3496] = {.lex_state = 102, .external_lex_state = 6}, + [3497] = {.lex_state = 102, .external_lex_state = 6}, + [3498] = {.lex_state = 102, .external_lex_state = 6}, + [3499] = {.lex_state = 102, .external_lex_state = 6}, + [3500] = {.lex_state = 102, .external_lex_state = 6}, + [3501] = {.lex_state = 102, .external_lex_state = 6}, + [3502] = {.lex_state = 102, .external_lex_state = 6}, + [3503] = {.lex_state = 144, .external_lex_state = 6}, + [3504] = {.lex_state = 144, .external_lex_state = 6}, + [3505] = {.lex_state = 102, .external_lex_state = 6}, + [3506] = {.lex_state = 102, .external_lex_state = 6}, + [3507] = {.lex_state = 102, .external_lex_state = 6}, + [3508] = {.lex_state = 102, .external_lex_state = 6}, + [3509] = {.lex_state = 102, .external_lex_state = 6}, + [3510] = {.lex_state = 102, .external_lex_state = 6}, + [3511] = {.lex_state = 102, .external_lex_state = 6}, + [3512] = {.lex_state = 102, .external_lex_state = 6}, + [3513] = {.lex_state = 102, .external_lex_state = 6}, + [3514] = {.lex_state = 102, .external_lex_state = 6}, + [3515] = {.lex_state = 102, .external_lex_state = 6}, + [3516] = {.lex_state = 102, .external_lex_state = 6}, + [3517] = {.lex_state = 102, .external_lex_state = 6}, + [3518] = {.lex_state = 102, .external_lex_state = 6}, + [3519] = {.lex_state = 102, .external_lex_state = 6}, + [3520] = {.lex_state = 102, .external_lex_state = 6}, + [3521] = {.lex_state = 102, .external_lex_state = 6}, + [3522] = {.lex_state = 102, .external_lex_state = 6}, + [3523] = {.lex_state = 102, .external_lex_state = 6}, + [3524] = {.lex_state = 102, .external_lex_state = 6}, + [3525] = {.lex_state = 102, .external_lex_state = 6}, + [3526] = {.lex_state = 102, .external_lex_state = 6}, + [3527] = {.lex_state = 102, .external_lex_state = 6}, + [3528] = {.lex_state = 102, .external_lex_state = 6}, + [3529] = {.lex_state = 102, .external_lex_state = 6}, + [3530] = {.lex_state = 102, .external_lex_state = 6}, + [3531] = {.lex_state = 102, .external_lex_state = 6}, + [3532] = {.lex_state = 102, .external_lex_state = 6}, + [3533] = {.lex_state = 102, .external_lex_state = 6}, + [3534] = {.lex_state = 102, .external_lex_state = 6}, + [3535] = {.lex_state = 102, .external_lex_state = 6}, + [3536] = {.lex_state = 102, .external_lex_state = 6}, + [3537] = {.lex_state = 102, .external_lex_state = 6}, + [3538] = {.lex_state = 102, .external_lex_state = 6}, + [3539] = {.lex_state = 102, .external_lex_state = 6}, + [3540] = {.lex_state = 102, .external_lex_state = 6}, + [3541] = {.lex_state = 102, .external_lex_state = 6}, + [3542] = {.lex_state = 102, .external_lex_state = 6}, + [3543] = {.lex_state = 102, .external_lex_state = 6}, + [3544] = {.lex_state = 102, .external_lex_state = 6}, + [3545] = {.lex_state = 102, .external_lex_state = 6}, + [3546] = {.lex_state = 102, .external_lex_state = 6}, + [3547] = {.lex_state = 102, .external_lex_state = 6}, + [3548] = {.lex_state = 102, .external_lex_state = 6}, + [3549] = {.lex_state = 102, .external_lex_state = 6}, + [3550] = {.lex_state = 102, .external_lex_state = 6}, + [3551] = {.lex_state = 102, .external_lex_state = 6}, + [3552] = {.lex_state = 102, .external_lex_state = 6}, + [3553] = {.lex_state = 102, .external_lex_state = 6}, + [3554] = {.lex_state = 102, .external_lex_state = 6}, + [3555] = {.lex_state = 102, .external_lex_state = 6}, + [3556] = {.lex_state = 102, .external_lex_state = 6}, + [3557] = {.lex_state = 102, .external_lex_state = 6}, + [3558] = {.lex_state = 102, .external_lex_state = 6}, + [3559] = {.lex_state = 102, .external_lex_state = 6}, + [3560] = {.lex_state = 102, .external_lex_state = 6}, + [3561] = {.lex_state = 102, .external_lex_state = 6}, + [3562] = {.lex_state = 102, .external_lex_state = 6}, + [3563] = {.lex_state = 102, .external_lex_state = 6}, + [3564] = {.lex_state = 102, .external_lex_state = 6}, + [3565] = {.lex_state = 102, .external_lex_state = 6}, + [3566] = {.lex_state = 102, .external_lex_state = 6}, + [3567] = {.lex_state = 102, .external_lex_state = 6}, + [3568] = {.lex_state = 102, .external_lex_state = 6}, + [3569] = {.lex_state = 102, .external_lex_state = 6}, + [3570] = {.lex_state = 102, .external_lex_state = 6}, + [3571] = {.lex_state = 102, .external_lex_state = 6}, + [3572] = {.lex_state = 102, .external_lex_state = 6}, + [3573] = {.lex_state = 102, .external_lex_state = 6}, + [3574] = {.lex_state = 102, .external_lex_state = 6}, + [3575] = {.lex_state = 102, .external_lex_state = 6}, + [3576] = {.lex_state = 102, .external_lex_state = 6}, + [3577] = {.lex_state = 144, .external_lex_state = 6}, + [3578] = {.lex_state = 102, .external_lex_state = 6}, + [3579] = {.lex_state = 102, .external_lex_state = 6}, + [3580] = {.lex_state = 102, .external_lex_state = 6}, + [3581] = {.lex_state = 102, .external_lex_state = 6}, + [3582] = {.lex_state = 102, .external_lex_state = 6}, + [3583] = {.lex_state = 102, .external_lex_state = 6}, + [3584] = {.lex_state = 102, .external_lex_state = 6}, + [3585] = {.lex_state = 102, .external_lex_state = 6}, + [3586] = {.lex_state = 102, .external_lex_state = 6}, + [3587] = {.lex_state = 102, .external_lex_state = 6}, + [3588] = {.lex_state = 102, .external_lex_state = 6}, + [3589] = {.lex_state = 144, .external_lex_state = 6}, + [3590] = {.lex_state = 102, .external_lex_state = 6}, + [3591] = {.lex_state = 102, .external_lex_state = 6}, + [3592] = {.lex_state = 102, .external_lex_state = 6}, + [3593] = {.lex_state = 102, .external_lex_state = 6}, + [3594] = {.lex_state = 102, .external_lex_state = 6}, + [3595] = {.lex_state = 102, .external_lex_state = 6}, + [3596] = {.lex_state = 102, .external_lex_state = 6}, + [3597] = {.lex_state = 144, .external_lex_state = 6}, + [3598] = {.lex_state = 50, .external_lex_state = 6}, + [3599] = {.lex_state = 144, .external_lex_state = 6}, + [3600] = {.lex_state = 144, .external_lex_state = 6}, + [3601] = {.lex_state = 144, .external_lex_state = 6}, + [3602] = {.lex_state = 144, .external_lex_state = 6}, + [3603] = {.lex_state = 144, .external_lex_state = 6}, + [3604] = {.lex_state = 50, .external_lex_state = 6}, + [3605] = {.lex_state = 50, .external_lex_state = 6}, + [3606] = {.lex_state = 50, .external_lex_state = 6}, + [3607] = {.lex_state = 144, .external_lex_state = 6}, + [3608] = {.lex_state = 144, .external_lex_state = 6}, + [3609] = {.lex_state = 144, .external_lex_state = 6}, + [3610] = {.lex_state = 50, .external_lex_state = 6}, + [3611] = {.lex_state = 50, .external_lex_state = 6}, + [3612] = {.lex_state = 50, .external_lex_state = 6}, + [3613] = {.lex_state = 50, .external_lex_state = 6}, + [3614] = {.lex_state = 144, .external_lex_state = 6}, + [3615] = {.lex_state = 50, .external_lex_state = 6}, + [3616] = {.lex_state = 50, .external_lex_state = 6}, + [3617] = {.lex_state = 50, .external_lex_state = 6}, + [3618] = {.lex_state = 144, .external_lex_state = 6}, + [3619] = {.lex_state = 144, .external_lex_state = 6}, + [3620] = {.lex_state = 50, .external_lex_state = 6}, + [3621] = {.lex_state = 50, .external_lex_state = 6}, + [3622] = {.lex_state = 144, .external_lex_state = 6}, + [3623] = {.lex_state = 50, .external_lex_state = 6}, + [3624] = {.lex_state = 144, .external_lex_state = 6}, + [3625] = {.lex_state = 50, .external_lex_state = 6}, + [3626] = {.lex_state = 50, .external_lex_state = 6}, + [3627] = {.lex_state = 144, .external_lex_state = 6}, + [3628] = {.lex_state = 144, .external_lex_state = 6}, + [3629] = {.lex_state = 144, .external_lex_state = 6}, + [3630] = {.lex_state = 144, .external_lex_state = 6}, + [3631] = {.lex_state = 144, .external_lex_state = 6}, + [3632] = {.lex_state = 144, .external_lex_state = 6}, + [3633] = {.lex_state = 50, .external_lex_state = 6}, + [3634] = {.lex_state = 50, .external_lex_state = 6}, + [3635] = {.lex_state = 50, .external_lex_state = 6}, + [3636] = {.lex_state = 144, .external_lex_state = 6}, + [3637] = {.lex_state = 144, .external_lex_state = 6}, + [3638] = {.lex_state = 50, .external_lex_state = 6}, + [3639] = {.lex_state = 144, .external_lex_state = 6}, + [3640] = {.lex_state = 102, .external_lex_state = 6}, + [3641] = {.lex_state = 102, .external_lex_state = 6}, + [3642] = {.lex_state = 51, .external_lex_state = 6}, + [3643] = {.lex_state = 102, .external_lex_state = 6}, + [3644] = {.lex_state = 62, .external_lex_state = 7}, + [3645] = {.lex_state = 62, .external_lex_state = 8}, + [3646] = {.lex_state = 62, .external_lex_state = 9}, + [3647] = {.lex_state = 62, .external_lex_state = 8}, + [3648] = {.lex_state = 62, .external_lex_state = 10}, + [3649] = {.lex_state = 62, .external_lex_state = 7}, + [3650] = {.lex_state = 64, .external_lex_state = 11}, + [3651] = {.lex_state = 64, .external_lex_state = 12}, + [3652] = {.lex_state = 62, .external_lex_state = 10}, + [3653] = {.lex_state = 62, .external_lex_state = 7}, + [3654] = {.lex_state = 64, .external_lex_state = 11}, + [3655] = {.lex_state = 64, .external_lex_state = 12}, + [3656] = {.lex_state = 62, .external_lex_state = 10}, + [3657] = {.lex_state = 62, .external_lex_state = 7}, + [3658] = {.lex_state = 64, .external_lex_state = 11}, + [3659] = {.lex_state = 64, .external_lex_state = 12}, + [3660] = {.lex_state = 62, .external_lex_state = 13}, + [3661] = {.lex_state = 62, .external_lex_state = 10}, + [3662] = {.lex_state = 62, .external_lex_state = 7}, + [3663] = {.lex_state = 62, .external_lex_state = 14}, + [3664] = {.lex_state = 62, .external_lex_state = 15}, + [3665] = {.lex_state = 64, .external_lex_state = 11}, + [3666] = {.lex_state = 64, .external_lex_state = 12}, + [3667] = {.lex_state = 62, .external_lex_state = 15}, + [3668] = {.lex_state = 62, .external_lex_state = 14}, + [3669] = {.lex_state = 62, .external_lex_state = 13}, + [3670] = {.lex_state = 62, .external_lex_state = 16}, + [3671] = {.lex_state = 62, .external_lex_state = 9}, + [3672] = {.lex_state = 62, .external_lex_state = 8}, + [3673] = {.lex_state = 62, .external_lex_state = 10}, + [3674] = {.lex_state = 62, .external_lex_state = 15}, + [3675] = {.lex_state = 62, .external_lex_state = 14}, + [3676] = {.lex_state = 62, .external_lex_state = 13}, + [3677] = {.lex_state = 62, .external_lex_state = 16}, + [3678] = {.lex_state = 62, .external_lex_state = 9}, + [3679] = {.lex_state = 62, .external_lex_state = 8}, + [3680] = {.lex_state = 62, .external_lex_state = 7}, + [3681] = {.lex_state = 64, .external_lex_state = 11}, + [3682] = {.lex_state = 64, .external_lex_state = 12}, + [3683] = {.lex_state = 62, .external_lex_state = 15}, + [3684] = {.lex_state = 62, .external_lex_state = 14}, + [3685] = {.lex_state = 62, .external_lex_state = 13}, + [3686] = {.lex_state = 62, .external_lex_state = 16}, + [3687] = {.lex_state = 62, .external_lex_state = 9}, + [3688] = {.lex_state = 62, .external_lex_state = 8}, + [3689] = {.lex_state = 62, .external_lex_state = 7}, + [3690] = {.lex_state = 62, .external_lex_state = 10}, + [3691] = {.lex_state = 62, .external_lex_state = 7}, + [3692] = {.lex_state = 62, .external_lex_state = 10}, + [3693] = {.lex_state = 62, .external_lex_state = 7}, + [3694] = {.lex_state = 62, .external_lex_state = 10}, + [3695] = {.lex_state = 64, .external_lex_state = 12}, + [3696] = {.lex_state = 64, .external_lex_state = 11}, + [3697] = {.lex_state = 62, .external_lex_state = 7}, + [3698] = {.lex_state = 62, .external_lex_state = 10}, + [3699] = {.lex_state = 62, .external_lex_state = 7}, + [3700] = {.lex_state = 62, .external_lex_state = 10}, + [3701] = {.lex_state = 62, .external_lex_state = 7}, + [3702] = {.lex_state = 64, .external_lex_state = 12}, + [3703] = {.lex_state = 64, .external_lex_state = 11}, + [3704] = {.lex_state = 62, .external_lex_state = 7}, + [3705] = {.lex_state = 62, .external_lex_state = 10}, + [3706] = {.lex_state = 62, .external_lex_state = 10}, + [3707] = {.lex_state = 62, .external_lex_state = 7}, + [3708] = {.lex_state = 62, .external_lex_state = 10}, + [3709] = {.lex_state = 62, .external_lex_state = 7}, + [3710] = {.lex_state = 62, .external_lex_state = 10}, + [3711] = {.lex_state = 62, .external_lex_state = 7}, + [3712] = {.lex_state = 62, .external_lex_state = 10}, + [3713] = {.lex_state = 62, .external_lex_state = 7}, + [3714] = {.lex_state = 64, .external_lex_state = 11}, + [3715] = {.lex_state = 64, .external_lex_state = 12}, + [3716] = {.lex_state = 62, .external_lex_state = 10}, + [3717] = {.lex_state = 62, .external_lex_state = 7}, + [3718] = {.lex_state = 62, .external_lex_state = 10}, + [3719] = {.lex_state = 62, .external_lex_state = 7}, + [3720] = {.lex_state = 62, .external_lex_state = 10}, + [3721] = {.lex_state = 62, .external_lex_state = 7}, + [3722] = {.lex_state = 62, .external_lex_state = 10}, + [3723] = {.lex_state = 62, .external_lex_state = 7}, + [3724] = {.lex_state = 62, .external_lex_state = 10}, + [3725] = {.lex_state = 62, .external_lex_state = 7}, + [3726] = {.lex_state = 64, .external_lex_state = 11}, + [3727] = {.lex_state = 64, .external_lex_state = 12}, + [3728] = {.lex_state = 62, .external_lex_state = 10}, + [3729] = {.lex_state = 62, .external_lex_state = 7}, + [3730] = {.lex_state = 62, .external_lex_state = 10}, + [3731] = {.lex_state = 62, .external_lex_state = 7}, + [3732] = {.lex_state = 62, .external_lex_state = 10}, + [3733] = {.lex_state = 64, .external_lex_state = 12}, + [3734] = {.lex_state = 64, .external_lex_state = 11}, + [3735] = {.lex_state = 62, .external_lex_state = 7}, + [3736] = {.lex_state = 62, .external_lex_state = 10}, + [3737] = {.lex_state = 64, .external_lex_state = 12}, + [3738] = {.lex_state = 62, .external_lex_state = 8}, + [3739] = {.lex_state = 64, .external_lex_state = 11}, + [3740] = {.lex_state = 62, .external_lex_state = 7}, + [3741] = {.lex_state = 62, .external_lex_state = 10}, + [3742] = {.lex_state = 62, .external_lex_state = 9}, + [3743] = {.lex_state = 64, .external_lex_state = 12}, + [3744] = {.lex_state = 62, .external_lex_state = 16}, + [3745] = {.lex_state = 64, .external_lex_state = 11}, + [3746] = {.lex_state = 62, .external_lex_state = 13}, + [3747] = {.lex_state = 62, .external_lex_state = 15}, + [3748] = {.lex_state = 62, .external_lex_state = 14}, + [3749] = {.lex_state = 62, .external_lex_state = 13}, + [3750] = {.lex_state = 62, .external_lex_state = 16}, + [3751] = {.lex_state = 62, .external_lex_state = 9}, + [3752] = {.lex_state = 62, .external_lex_state = 8}, + [3753] = {.lex_state = 62, .external_lex_state = 7}, + [3754] = {.lex_state = 62, .external_lex_state = 10}, + [3755] = {.lex_state = 64, .external_lex_state = 12}, + [3756] = {.lex_state = 64, .external_lex_state = 11}, + [3757] = {.lex_state = 62, .external_lex_state = 7}, + [3758] = {.lex_state = 62, .external_lex_state = 10}, + [3759] = {.lex_state = 64, .external_lex_state = 12}, + [3760] = {.lex_state = 64, .external_lex_state = 11}, + [3761] = {.lex_state = 62, .external_lex_state = 7}, + [3762] = {.lex_state = 62, .external_lex_state = 10}, + [3763] = {.lex_state = 64, .external_lex_state = 12}, + [3764] = {.lex_state = 62, .external_lex_state = 14}, + [3765] = {.lex_state = 62, .external_lex_state = 15}, + [3766] = {.lex_state = 64, .external_lex_state = 11}, + [3767] = {.lex_state = 62, .external_lex_state = 7}, + [3768] = {.lex_state = 62, .external_lex_state = 10}, + [3769] = {.lex_state = 64, .external_lex_state = 12}, + [3770] = {.lex_state = 64, .external_lex_state = 11}, + [3771] = {.lex_state = 62, .external_lex_state = 7}, + [3772] = {.lex_state = 62, .external_lex_state = 10}, + [3773] = {.lex_state = 64, .external_lex_state = 12}, + [3774] = {.lex_state = 64, .external_lex_state = 11}, + [3775] = {.lex_state = 62, .external_lex_state = 7}, + [3776] = {.lex_state = 62, .external_lex_state = 10}, + [3777] = {.lex_state = 64, .external_lex_state = 12}, + [3778] = {.lex_state = 64, .external_lex_state = 11}, + [3779] = {.lex_state = 62, .external_lex_state = 7}, + [3780] = {.lex_state = 62, .external_lex_state = 10}, + [3781] = {.lex_state = 64, .external_lex_state = 12}, + [3782] = {.lex_state = 64, .external_lex_state = 11}, + [3783] = {.lex_state = 62, .external_lex_state = 15}, + [3784] = {.lex_state = 62, .external_lex_state = 14}, + [3785] = {.lex_state = 62, .external_lex_state = 13}, + [3786] = {.lex_state = 62, .external_lex_state = 16}, + [3787] = {.lex_state = 62, .external_lex_state = 9}, + [3788] = {.lex_state = 62, .external_lex_state = 8}, + [3789] = {.lex_state = 62, .external_lex_state = 7}, + [3790] = {.lex_state = 62, .external_lex_state = 10}, + [3791] = {.lex_state = 64, .external_lex_state = 12}, + [3792] = {.lex_state = 64, .external_lex_state = 11}, + [3793] = {.lex_state = 62, .external_lex_state = 7}, + [3794] = {.lex_state = 62, .external_lex_state = 10}, + [3795] = {.lex_state = 64, .external_lex_state = 12}, + [3796] = {.lex_state = 64, .external_lex_state = 11}, + [3797] = {.lex_state = 62, .external_lex_state = 7}, + [3798] = {.lex_state = 62, .external_lex_state = 10}, + [3799] = {.lex_state = 64, .external_lex_state = 12}, + [3800] = {.lex_state = 64, .external_lex_state = 11}, + [3801] = {.lex_state = 62, .external_lex_state = 7}, + [3802] = {.lex_state = 62, .external_lex_state = 10}, + [3803] = {.lex_state = 64, .external_lex_state = 12}, + [3804] = {.lex_state = 64, .external_lex_state = 11}, + [3805] = {.lex_state = 62, .external_lex_state = 7}, + [3806] = {.lex_state = 62, .external_lex_state = 10}, + [3807] = {.lex_state = 64, .external_lex_state = 12}, + [3808] = {.lex_state = 64, .external_lex_state = 11}, + [3809] = {.lex_state = 62, .external_lex_state = 7}, + [3810] = {.lex_state = 62, .external_lex_state = 10}, + [3811] = {.lex_state = 64, .external_lex_state = 12}, + [3812] = {.lex_state = 64, .external_lex_state = 11}, + [3813] = {.lex_state = 62, .external_lex_state = 7}, + [3814] = {.lex_state = 62, .external_lex_state = 10}, + [3815] = {.lex_state = 64, .external_lex_state = 12}, + [3816] = {.lex_state = 64, .external_lex_state = 11}, + [3817] = {.lex_state = 62, .external_lex_state = 7}, + [3818] = {.lex_state = 62, .external_lex_state = 10}, + [3819] = {.lex_state = 64, .external_lex_state = 12}, + [3820] = {.lex_state = 62, .external_lex_state = 8}, + [3821] = {.lex_state = 62, .external_lex_state = 10}, + [3822] = {.lex_state = 62, .external_lex_state = 7}, + [3823] = {.lex_state = 64, .external_lex_state = 11}, + [3824] = {.lex_state = 64, .external_lex_state = 12}, + [3825] = {.lex_state = 62, .external_lex_state = 9}, + [3826] = {.lex_state = 62, .external_lex_state = 16}, + [3827] = {.lex_state = 62, .external_lex_state = 13}, + [3828] = {.lex_state = 64, .external_lex_state = 11}, + [3829] = {.lex_state = 62, .external_lex_state = 14}, + [3830] = {.lex_state = 62, .external_lex_state = 15}, + [3831] = {.lex_state = 62, .external_lex_state = 7}, + [3832] = {.lex_state = 62, .external_lex_state = 10}, + [3833] = {.lex_state = 62, .external_lex_state = 10}, + [3834] = {.lex_state = 62, .external_lex_state = 7}, + [3835] = {.lex_state = 64, .external_lex_state = 11}, + [3836] = {.lex_state = 64, .external_lex_state = 12}, + [3837] = {.lex_state = 64, .external_lex_state = 12}, + [3838] = {.lex_state = 64, .external_lex_state = 11}, + [3839] = {.lex_state = 62, .external_lex_state = 7}, + [3840] = {.lex_state = 62, .external_lex_state = 7}, + [3841] = {.lex_state = 62, .external_lex_state = 10}, + [3842] = {.lex_state = 64, .external_lex_state = 12}, + [3843] = {.lex_state = 64, .external_lex_state = 11}, + [3844] = {.lex_state = 62, .external_lex_state = 7}, + [3845] = {.lex_state = 62, .external_lex_state = 10}, + [3846] = {.lex_state = 64, .external_lex_state = 12}, + [3847] = {.lex_state = 64, .external_lex_state = 11}, + [3848] = {.lex_state = 62, .external_lex_state = 7}, + [3849] = {.lex_state = 62, .external_lex_state = 10}, + [3850] = {.lex_state = 64, .external_lex_state = 12}, + [3851] = {.lex_state = 64, .external_lex_state = 11}, + [3852] = {.lex_state = 64, .external_lex_state = 12}, + [3853] = {.lex_state = 62, .external_lex_state = 7}, + [3854] = {.lex_state = 64, .external_lex_state = 11}, + [3855] = {.lex_state = 62, .external_lex_state = 15}, + [3856] = {.lex_state = 62, .external_lex_state = 14}, + [3857] = {.lex_state = 62, .external_lex_state = 13}, + [3858] = {.lex_state = 62, .external_lex_state = 16}, + [3859] = {.lex_state = 62, .external_lex_state = 9}, + [3860] = {.lex_state = 62, .external_lex_state = 8}, + [3861] = {.lex_state = 62, .external_lex_state = 10}, + [3862] = {.lex_state = 64, .external_lex_state = 12}, + [3863] = {.lex_state = 64, .external_lex_state = 11}, + [3864] = {.lex_state = 62, .external_lex_state = 7}, + [3865] = {.lex_state = 62, .external_lex_state = 10}, + [3866] = {.lex_state = 64, .external_lex_state = 12}, + [3867] = {.lex_state = 64, .external_lex_state = 11}, + [3868] = {.lex_state = 62, .external_lex_state = 7}, + [3869] = {.lex_state = 62, .external_lex_state = 10}, + [3870] = {.lex_state = 62, .external_lex_state = 15}, + [3871] = {.lex_state = 62, .external_lex_state = 8}, + [3872] = {.lex_state = 62, .external_lex_state = 9}, + [3873] = {.lex_state = 62, .external_lex_state = 9}, + [3874] = {.lex_state = 62, .external_lex_state = 16}, + [3875] = {.lex_state = 62, .external_lex_state = 13}, + [3876] = {.lex_state = 62, .external_lex_state = 10}, + [3877] = {.lex_state = 62, .external_lex_state = 14}, + [3878] = {.lex_state = 62, .external_lex_state = 15}, + [3879] = {.lex_state = 62, .external_lex_state = 8}, + [3880] = {.lex_state = 62, .external_lex_state = 9}, + [3881] = {.lex_state = 62, .external_lex_state = 16}, + [3882] = {.lex_state = 62, .external_lex_state = 13}, + [3883] = {.lex_state = 62, .external_lex_state = 14}, + [3884] = {.lex_state = 62, .external_lex_state = 15}, + [3885] = {.lex_state = 62, .external_lex_state = 14}, + [3886] = {.lex_state = 62, .external_lex_state = 15}, + [3887] = {.lex_state = 62, .external_lex_state = 14}, + [3888] = {.lex_state = 62, .external_lex_state = 13}, + [3889] = {.lex_state = 62, .external_lex_state = 16}, + [3890] = {.lex_state = 62, .external_lex_state = 9}, + [3891] = {.lex_state = 62, .external_lex_state = 8}, + [3892] = {.lex_state = 62, .external_lex_state = 13}, + [3893] = {.lex_state = 62, .external_lex_state = 16}, + [3894] = {.lex_state = 62, .external_lex_state = 9}, + [3895] = {.lex_state = 64, .external_lex_state = 12}, + [3896] = {.lex_state = 64, .external_lex_state = 11}, + [3897] = {.lex_state = 62, .external_lex_state = 7}, + [3898] = {.lex_state = 62, .external_lex_state = 10}, + [3899] = {.lex_state = 64, .external_lex_state = 12}, + [3900] = {.lex_state = 64, .external_lex_state = 11}, + [3901] = {.lex_state = 62, .external_lex_state = 7}, + [3902] = {.lex_state = 62, .external_lex_state = 10}, + [3903] = {.lex_state = 62, .external_lex_state = 8}, + [3904] = {.lex_state = 62, .external_lex_state = 8}, + [3905] = {.lex_state = 64, .external_lex_state = 12}, + [3906] = {.lex_state = 64, .external_lex_state = 11}, + [3907] = {.lex_state = 62, .external_lex_state = 9}, + [3908] = {.lex_state = 62, .external_lex_state = 7}, + [3909] = {.lex_state = 62, .external_lex_state = 10}, + [3910] = {.lex_state = 62, .external_lex_state = 16}, + [3911] = {.lex_state = 62, .external_lex_state = 13}, + [3912] = {.lex_state = 62, .external_lex_state = 14}, + [3913] = {.lex_state = 62, .external_lex_state = 15}, + [3914] = {.lex_state = 62, .external_lex_state = 8}, + [3915] = {.lex_state = 62, .external_lex_state = 9}, + [3916] = {.lex_state = 62, .external_lex_state = 16}, + [3917] = {.lex_state = 62, .external_lex_state = 13}, + [3918] = {.lex_state = 62, .external_lex_state = 8}, + [3919] = {.lex_state = 62, .external_lex_state = 14}, + [3920] = {.lex_state = 62, .external_lex_state = 15}, + [3921] = {.lex_state = 64, .external_lex_state = 12}, + [3922] = {.lex_state = 64, .external_lex_state = 11}, + [3923] = {.lex_state = 62, .external_lex_state = 16}, + [3924] = {.lex_state = 62, .external_lex_state = 10}, + [3925] = {.lex_state = 62, .external_lex_state = 7}, + [3926] = {.lex_state = 64, .external_lex_state = 11}, + [3927] = {.lex_state = 64, .external_lex_state = 12}, + [3928] = {.lex_state = 62, .external_lex_state = 13}, + [3929] = {.lex_state = 62, .external_lex_state = 14}, + [3930] = {.lex_state = 62, .external_lex_state = 15}, + [3931] = {.lex_state = 62, .external_lex_state = 7}, + [3932] = {.lex_state = 62, .external_lex_state = 10}, + [3933] = {.lex_state = 64, .external_lex_state = 12}, + [3934] = {.lex_state = 64, .external_lex_state = 11}, + [3935] = {.lex_state = 62, .external_lex_state = 7}, + [3936] = {.lex_state = 62, .external_lex_state = 10}, + [3937] = {.lex_state = 62, .external_lex_state = 7}, + [3938] = {.lex_state = 64, .external_lex_state = 11}, + [3939] = {.lex_state = 64, .external_lex_state = 12}, + [3940] = {.lex_state = 62, .external_lex_state = 10}, + [3941] = {.lex_state = 62, .external_lex_state = 8}, + [3942] = {.lex_state = 62, .external_lex_state = 9}, + [3943] = {.lex_state = 62, .external_lex_state = 16}, + [3944] = {.lex_state = 62, .external_lex_state = 13}, + [3945] = {.lex_state = 62, .external_lex_state = 14}, + [3946] = {.lex_state = 62, .external_lex_state = 15}, + [3947] = {.lex_state = 62, .external_lex_state = 8}, + [3948] = {.lex_state = 62, .external_lex_state = 9}, + [3949] = {.lex_state = 62, .external_lex_state = 16}, + [3950] = {.lex_state = 62, .external_lex_state = 13}, + [3951] = {.lex_state = 62, .external_lex_state = 14}, + [3952] = {.lex_state = 62, .external_lex_state = 15}, + [3953] = {.lex_state = 64, .external_lex_state = 12}, + [3954] = {.lex_state = 64, .external_lex_state = 11}, + [3955] = {.lex_state = 62, .external_lex_state = 8}, + [3956] = {.lex_state = 62, .external_lex_state = 7}, + [3957] = {.lex_state = 62, .external_lex_state = 9}, + [3958] = {.lex_state = 62, .external_lex_state = 15}, + [3959] = {.lex_state = 62, .external_lex_state = 14}, + [3960] = {.lex_state = 62, .external_lex_state = 13}, + [3961] = {.lex_state = 62, .external_lex_state = 16}, + [3962] = {.lex_state = 62, .external_lex_state = 9}, + [3963] = {.lex_state = 62, .external_lex_state = 8}, + [3964] = {.lex_state = 62, .external_lex_state = 10}, + [3965] = {.lex_state = 64, .external_lex_state = 12}, + [3966] = {.lex_state = 64, .external_lex_state = 11}, + [3967] = {.lex_state = 62, .external_lex_state = 7}, + [3968] = {.lex_state = 62, .external_lex_state = 10}, + [3969] = {.lex_state = 62, .external_lex_state = 8}, + [3970] = {.lex_state = 62, .external_lex_state = 9}, + [3971] = {.lex_state = 62, .external_lex_state = 16}, + [3972] = {.lex_state = 62, .external_lex_state = 13}, + [3973] = {.lex_state = 62, .external_lex_state = 14}, + [3974] = {.lex_state = 62, .external_lex_state = 15}, + [3975] = {.lex_state = 62, .external_lex_state = 16}, + [3976] = {.lex_state = 62, .external_lex_state = 8}, + [3977] = {.lex_state = 62, .external_lex_state = 9}, + [3978] = {.lex_state = 62, .external_lex_state = 16}, + [3979] = {.lex_state = 62, .external_lex_state = 13}, + [3980] = {.lex_state = 62, .external_lex_state = 14}, + [3981] = {.lex_state = 62, .external_lex_state = 15}, + [3982] = {.lex_state = 62, .external_lex_state = 13}, + [3983] = {.lex_state = 62, .external_lex_state = 14}, + [3984] = {.lex_state = 62, .external_lex_state = 15}, + [3985] = {.lex_state = 64, .external_lex_state = 12}, + [3986] = {.lex_state = 64, .external_lex_state = 11}, + [3987] = {.lex_state = 62, .external_lex_state = 7}, + [3988] = {.lex_state = 62, .external_lex_state = 10}, + [3989] = {.lex_state = 62, .external_lex_state = 15}, + [3990] = {.lex_state = 62, .external_lex_state = 14}, + [3991] = {.lex_state = 62, .external_lex_state = 13}, + [3992] = {.lex_state = 62, .external_lex_state = 16}, + [3993] = {.lex_state = 62, .external_lex_state = 9}, + [3994] = {.lex_state = 62, .external_lex_state = 8}, + [3995] = {.lex_state = 64, .external_lex_state = 12}, + [3996] = {.lex_state = 64, .external_lex_state = 11}, + [3997] = {.lex_state = 62, .external_lex_state = 10}, + [3998] = {.lex_state = 62, .external_lex_state = 8}, + [3999] = {.lex_state = 62, .external_lex_state = 9}, + [4000] = {.lex_state = 62, .external_lex_state = 16}, + [4001] = {.lex_state = 62, .external_lex_state = 13}, + [4002] = {.lex_state = 62, .external_lex_state = 14}, + [4003] = {.lex_state = 62, .external_lex_state = 15}, + [4004] = {.lex_state = 62, .external_lex_state = 8}, + [4005] = {.lex_state = 62, .external_lex_state = 9}, + [4006] = {.lex_state = 62, .external_lex_state = 16}, + [4007] = {.lex_state = 62, .external_lex_state = 13}, + [4008] = {.lex_state = 62, .external_lex_state = 14}, + [4009] = {.lex_state = 62, .external_lex_state = 15}, + [4010] = {.lex_state = 62, .external_lex_state = 10}, + [4011] = {.lex_state = 62, .external_lex_state = 7}, + [4012] = {.lex_state = 64, .external_lex_state = 11}, + [4013] = {.lex_state = 64, .external_lex_state = 12}, + [4014] = {.lex_state = 64, .external_lex_state = 12}, + [4015] = {.lex_state = 64, .external_lex_state = 11}, + [4016] = {.lex_state = 62, .external_lex_state = 7}, + [4017] = {.lex_state = 62, .external_lex_state = 10}, + [4018] = {.lex_state = 64, .external_lex_state = 12}, + [4019] = {.lex_state = 64, .external_lex_state = 11}, + [4020] = {.lex_state = 62, .external_lex_state = 7}, + [4021] = {.lex_state = 62, .external_lex_state = 10}, + [4022] = {.lex_state = 62, .external_lex_state = 8}, + [4023] = {.lex_state = 62, .external_lex_state = 9}, + [4024] = {.lex_state = 62, .external_lex_state = 16}, + [4025] = {.lex_state = 62, .external_lex_state = 13}, + [4026] = {.lex_state = 62, .external_lex_state = 14}, + [4027] = {.lex_state = 62, .external_lex_state = 10}, + [4028] = {.lex_state = 62, .external_lex_state = 7}, + [4029] = {.lex_state = 64, .external_lex_state = 11}, + [4030] = {.lex_state = 64, .external_lex_state = 12}, + [4031] = {.lex_state = 62, .external_lex_state = 15}, + [4032] = {.lex_state = 62, .external_lex_state = 8}, + [4033] = {.lex_state = 62, .external_lex_state = 9}, + [4034] = {.lex_state = 62, .external_lex_state = 16}, + [4035] = {.lex_state = 62, .external_lex_state = 13}, + [4036] = {.lex_state = 62, .external_lex_state = 14}, + [4037] = {.lex_state = 62, .external_lex_state = 15}, + [4038] = {.lex_state = 62, .external_lex_state = 10}, + [4039] = {.lex_state = 62, .external_lex_state = 10}, + [4040] = {.lex_state = 62, .external_lex_state = 7}, + [4041] = {.lex_state = 64, .external_lex_state = 11}, + [4042] = {.lex_state = 64, .external_lex_state = 12}, + [4043] = {.lex_state = 62, .external_lex_state = 7}, + [4044] = {.lex_state = 64, .external_lex_state = 11}, + [4045] = {.lex_state = 62, .external_lex_state = 8}, + [4046] = {.lex_state = 62, .external_lex_state = 9}, + [4047] = {.lex_state = 64, .external_lex_state = 12}, + [4048] = {.lex_state = 64, .external_lex_state = 11}, + [4049] = {.lex_state = 62, .external_lex_state = 7}, + [4050] = {.lex_state = 62, .external_lex_state = 10}, + [4051] = {.lex_state = 64, .external_lex_state = 12}, + [4052] = {.lex_state = 64, .external_lex_state = 12}, + [4053] = {.lex_state = 64, .external_lex_state = 11}, + [4054] = {.lex_state = 62, .external_lex_state = 7}, + [4055] = {.lex_state = 62, .external_lex_state = 10}, + [4056] = {.lex_state = 62, .external_lex_state = 15}, + [4057] = {.lex_state = 62, .external_lex_state = 14}, + [4058] = {.lex_state = 62, .external_lex_state = 16}, + [4059] = {.lex_state = 62, .external_lex_state = 13}, + [4060] = {.lex_state = 62, .external_lex_state = 13}, + [4061] = {.lex_state = 62, .external_lex_state = 15}, + [4062] = {.lex_state = 62, .external_lex_state = 14}, + [4063] = {.lex_state = 62, .external_lex_state = 13}, + [4064] = {.lex_state = 62, .external_lex_state = 16}, + [4065] = {.lex_state = 62, .external_lex_state = 9}, + [4066] = {.lex_state = 62, .external_lex_state = 8}, + [4067] = {.lex_state = 62, .external_lex_state = 16}, + [4068] = {.lex_state = 62, .external_lex_state = 9}, + [4069] = {.lex_state = 62, .external_lex_state = 8}, + [4070] = {.lex_state = 62, .external_lex_state = 8}, + [4071] = {.lex_state = 62, .external_lex_state = 9}, + [4072] = {.lex_state = 62, .external_lex_state = 16}, + [4073] = {.lex_state = 62, .external_lex_state = 13}, + [4074] = {.lex_state = 62, .external_lex_state = 14}, + [4075] = {.lex_state = 62, .external_lex_state = 15}, + [4076] = {.lex_state = 62, .external_lex_state = 16}, + [4077] = {.lex_state = 62, .external_lex_state = 9}, + [4078] = {.lex_state = 62, .external_lex_state = 16}, + [4079] = {.lex_state = 62, .external_lex_state = 13}, + [4080] = {.lex_state = 62, .external_lex_state = 14}, + [4081] = {.lex_state = 62, .external_lex_state = 15}, + [4082] = {.lex_state = 62, .external_lex_state = 14}, + [4083] = {.lex_state = 64, .external_lex_state = 12}, + [4084] = {.lex_state = 62, .external_lex_state = 15}, + [4085] = {.lex_state = 64, .external_lex_state = 11}, + [4086] = {.lex_state = 62, .external_lex_state = 7}, + [4087] = {.lex_state = 62, .external_lex_state = 8}, + [4088] = {.lex_state = 62, .external_lex_state = 10}, + [4089] = {.lex_state = 62, .external_lex_state = 9}, + [4090] = {.lex_state = 64, .external_lex_state = 12}, + [4091] = {.lex_state = 64, .external_lex_state = 11}, + [4092] = {.lex_state = 62, .external_lex_state = 15}, + [4093] = {.lex_state = 62, .external_lex_state = 14}, + [4094] = {.lex_state = 62, .external_lex_state = 13}, + [4095] = {.lex_state = 62, .external_lex_state = 16}, + [4096] = {.lex_state = 62, .external_lex_state = 9}, + [4097] = {.lex_state = 62, .external_lex_state = 8}, + [4098] = {.lex_state = 62, .external_lex_state = 7}, + [4099] = {.lex_state = 62, .external_lex_state = 10}, + [4100] = {.lex_state = 62, .external_lex_state = 15}, + [4101] = {.lex_state = 62, .external_lex_state = 14}, + [4102] = {.lex_state = 62, .external_lex_state = 13}, + [4103] = {.lex_state = 62, .external_lex_state = 16}, + [4104] = {.lex_state = 62, .external_lex_state = 9}, + [4105] = {.lex_state = 62, .external_lex_state = 8}, + [4106] = {.lex_state = 62, .external_lex_state = 8}, + [4107] = {.lex_state = 62, .external_lex_state = 9}, + [4108] = {.lex_state = 62, .external_lex_state = 16}, + [4109] = {.lex_state = 62, .external_lex_state = 13}, + [4110] = {.lex_state = 62, .external_lex_state = 16}, + [4111] = {.lex_state = 62, .external_lex_state = 14}, + [4112] = {.lex_state = 62, .external_lex_state = 15}, + [4113] = {.lex_state = 62, .external_lex_state = 13}, + [4114] = {.lex_state = 62, .external_lex_state = 8}, + [4115] = {.lex_state = 62, .external_lex_state = 9}, + [4116] = {.lex_state = 62, .external_lex_state = 14}, + [4117] = {.lex_state = 62, .external_lex_state = 15}, + [4118] = {.lex_state = 62, .external_lex_state = 16}, + [4119] = {.lex_state = 62, .external_lex_state = 13}, + [4120] = {.lex_state = 62, .external_lex_state = 10}, + [4121] = {.lex_state = 62, .external_lex_state = 14}, + [4122] = {.lex_state = 64, .external_lex_state = 12}, + [4123] = {.lex_state = 64, .external_lex_state = 11}, + [4124] = {.lex_state = 62, .external_lex_state = 15}, + [4125] = {.lex_state = 62, .external_lex_state = 7}, + [4126] = {.lex_state = 62, .external_lex_state = 10}, + [4127] = {.lex_state = 64, .external_lex_state = 12}, + [4128] = {.lex_state = 64, .external_lex_state = 11}, + [4129] = {.lex_state = 62, .external_lex_state = 7}, + [4130] = {.lex_state = 62, .external_lex_state = 10}, + [4131] = {.lex_state = 62, .external_lex_state = 7}, + [4132] = {.lex_state = 64, .external_lex_state = 11}, + [4133] = {.lex_state = 64, .external_lex_state = 12}, + [4134] = {.lex_state = 62, .external_lex_state = 10}, + [4135] = {.lex_state = 64, .external_lex_state = 12}, + [4136] = {.lex_state = 62, .external_lex_state = 7}, + [4137] = {.lex_state = 64, .external_lex_state = 11}, + [4138] = {.lex_state = 102, .external_lex_state = 6}, + [4139] = {.lex_state = 102, .external_lex_state = 6}, + [4140] = {.lex_state = 258, .external_lex_state = 6}, + [4141] = {.lex_state = 258, .external_lex_state = 6}, + [4142] = {.lex_state = 258, .external_lex_state = 6}, + [4143] = {.lex_state = 258, .external_lex_state = 6}, + [4144] = {.lex_state = 258, .external_lex_state = 6}, + [4145] = {.lex_state = 102, .external_lex_state = 6}, + [4146] = {.lex_state = 258, .external_lex_state = 6}, + [4147] = {.lex_state = 258, .external_lex_state = 6}, + [4148] = {.lex_state = 258, .external_lex_state = 6}, + [4149] = {.lex_state = 258, .external_lex_state = 6}, + [4150] = {.lex_state = 102, .external_lex_state = 6}, + [4151] = {.lex_state = 102, .external_lex_state = 6}, + [4152] = {.lex_state = 102, .external_lex_state = 6}, + [4153] = {.lex_state = 258, .external_lex_state = 6}, + [4154] = {.lex_state = 258, .external_lex_state = 6}, + [4155] = {.lex_state = 258, .external_lex_state = 6}, + [4156] = {.lex_state = 102, .external_lex_state = 6}, + [4157] = {.lex_state = 258, .external_lex_state = 6}, + [4158] = {.lex_state = 258, .external_lex_state = 6}, + [4159] = {.lex_state = 258, .external_lex_state = 6}, + [4160] = {.lex_state = 258, .external_lex_state = 6}, + [4161] = {.lex_state = 102, .external_lex_state = 6}, + [4162] = {.lex_state = 258, .external_lex_state = 6}, + [4163] = {.lex_state = 102, .external_lex_state = 6}, + [4164] = {.lex_state = 102, .external_lex_state = 6}, + [4165] = {.lex_state = 258, .external_lex_state = 6}, + [4166] = {.lex_state = 258, .external_lex_state = 6}, + [4167] = {.lex_state = 102, .external_lex_state = 6}, + [4168] = {.lex_state = 258, .external_lex_state = 6}, + [4169] = {.lex_state = 102, .external_lex_state = 6}, + [4170] = {.lex_state = 258, .external_lex_state = 6}, + [4171] = {.lex_state = 102, .external_lex_state = 6}, + [4172] = {.lex_state = 258, .external_lex_state = 6}, + [4173] = {.lex_state = 102, .external_lex_state = 6}, + [4174] = {.lex_state = 102, .external_lex_state = 6}, + [4175] = {.lex_state = 102, .external_lex_state = 6}, + [4176] = {.lex_state = 258, .external_lex_state = 6}, + [4177] = {.lex_state = 258, .external_lex_state = 6}, + [4178] = {.lex_state = 258, .external_lex_state = 6}, + [4179] = {.lex_state = 102, .external_lex_state = 6}, + [4180] = {.lex_state = 258, .external_lex_state = 6}, + [4181] = {.lex_state = 258, .external_lex_state = 6}, + [4182] = {.lex_state = 102, .external_lex_state = 6}, + [4183] = {.lex_state = 102, .external_lex_state = 6}, + [4184] = {.lex_state = 258, .external_lex_state = 6}, + [4185] = {.lex_state = 258, .external_lex_state = 6}, + [4186] = {.lex_state = 258, .external_lex_state = 6}, + [4187] = {.lex_state = 102, .external_lex_state = 6}, + [4188] = {.lex_state = 102, .external_lex_state = 6}, + [4189] = {.lex_state = 258, .external_lex_state = 6}, + [4190] = {.lex_state = 102, .external_lex_state = 6}, + [4191] = {.lex_state = 258, .external_lex_state = 6}, + [4192] = {.lex_state = 258, .external_lex_state = 6}, + [4193] = {.lex_state = 102, .external_lex_state = 6}, + [4194] = {.lex_state = 258, .external_lex_state = 6}, + [4195] = {.lex_state = 102, .external_lex_state = 6}, + [4196] = {.lex_state = 258, .external_lex_state = 6}, + [4197] = {.lex_state = 258, .external_lex_state = 6}, + [4198] = {.lex_state = 258, .external_lex_state = 6}, + [4199] = {.lex_state = 258, .external_lex_state = 6}, + [4200] = {.lex_state = 102, .external_lex_state = 6}, + [4201] = {.lex_state = 102, .external_lex_state = 6}, + [4202] = {.lex_state = 102, .external_lex_state = 6}, + [4203] = {.lex_state = 258, .external_lex_state = 6}, + [4204] = {.lex_state = 258, .external_lex_state = 6}, + [4205] = {.lex_state = 258, .external_lex_state = 6}, + [4206] = {.lex_state = 258, .external_lex_state = 6}, + [4207] = {.lex_state = 102, .external_lex_state = 6}, + [4208] = {.lex_state = 258, .external_lex_state = 6}, + [4209] = {.lex_state = 258, .external_lex_state = 6}, + [4210] = {.lex_state = 102, .external_lex_state = 6}, + [4211] = {.lex_state = 258, .external_lex_state = 6}, + [4212] = {.lex_state = 102, .external_lex_state = 6}, + [4213] = {.lex_state = 102, .external_lex_state = 6}, + [4214] = {.lex_state = 258, .external_lex_state = 6}, + [4215] = {.lex_state = 258, .external_lex_state = 6}, + [4216] = {.lex_state = 102, .external_lex_state = 6}, + [4217] = {.lex_state = 258, .external_lex_state = 6}, + [4218] = {.lex_state = 102, .external_lex_state = 6}, + [4219] = {.lex_state = 102, .external_lex_state = 6}, + [4220] = {.lex_state = 258, .external_lex_state = 6}, + [4221] = {.lex_state = 258, .external_lex_state = 6}, + [4222] = {.lex_state = 102, .external_lex_state = 6}, + [4223] = {.lex_state = 258, .external_lex_state = 6}, + [4224] = {.lex_state = 102, .external_lex_state = 6}, + [4225] = {.lex_state = 258, .external_lex_state = 6}, + [4226] = {.lex_state = 258, .external_lex_state = 6}, + [4227] = {.lex_state = 102, .external_lex_state = 6}, + [4228] = {.lex_state = 102, .external_lex_state = 6}, + [4229] = {.lex_state = 102, .external_lex_state = 6}, + [4230] = {.lex_state = 102, .external_lex_state = 6}, + [4231] = {.lex_state = 258, .external_lex_state = 6}, + [4232] = {.lex_state = 258, .external_lex_state = 6}, + [4233] = {.lex_state = 258, .external_lex_state = 6}, + [4234] = {.lex_state = 258, .external_lex_state = 6}, + [4235] = {.lex_state = 102, .external_lex_state = 6}, + [4236] = {.lex_state = 102, .external_lex_state = 6}, + [4237] = {.lex_state = 102, .external_lex_state = 6}, + [4238] = {.lex_state = 258, .external_lex_state = 6}, + [4239] = {.lex_state = 102, .external_lex_state = 6}, + [4240] = {.lex_state = 258, .external_lex_state = 6}, + [4241] = {.lex_state = 258, .external_lex_state = 6}, + [4242] = {.lex_state = 258, .external_lex_state = 6}, + [4243] = {.lex_state = 258, .external_lex_state = 6}, + [4244] = {.lex_state = 102, .external_lex_state = 6}, + [4245] = {.lex_state = 258, .external_lex_state = 6}, + [4246] = {.lex_state = 258, .external_lex_state = 6}, + [4247] = {.lex_state = 258, .external_lex_state = 6}, + [4248] = {.lex_state = 258, .external_lex_state = 6}, + [4249] = {.lex_state = 258, .external_lex_state = 6}, + [4250] = {.lex_state = 258, .external_lex_state = 6}, + [4251] = {.lex_state = 102, .external_lex_state = 6}, + [4252] = {.lex_state = 258, .external_lex_state = 6}, + [4253] = {.lex_state = 258, .external_lex_state = 6}, + [4254] = {.lex_state = 258, .external_lex_state = 6}, + [4255] = {.lex_state = 102, .external_lex_state = 6}, + [4256] = {.lex_state = 102, .external_lex_state = 6}, + [4257] = {.lex_state = 258, .external_lex_state = 6}, + [4258] = {.lex_state = 102, .external_lex_state = 6}, + [4259] = {.lex_state = 258, .external_lex_state = 6}, + [4260] = {.lex_state = 258, .external_lex_state = 6}, + [4261] = {.lex_state = 258, .external_lex_state = 6}, + [4262] = {.lex_state = 102, .external_lex_state = 6}, + [4263] = {.lex_state = 102, .external_lex_state = 6}, + [4264] = {.lex_state = 102, .external_lex_state = 6}, + [4265] = {.lex_state = 258, .external_lex_state = 6}, + [4266] = {.lex_state = 258, .external_lex_state = 6}, + [4267] = {.lex_state = 258, .external_lex_state = 6}, + [4268] = {.lex_state = 258, .external_lex_state = 6}, + [4269] = {.lex_state = 258, .external_lex_state = 6}, + [4270] = {.lex_state = 258, .external_lex_state = 6}, + [4271] = {.lex_state = 102, .external_lex_state = 6}, + [4272] = {.lex_state = 102, .external_lex_state = 6}, + [4273] = {.lex_state = 258, .external_lex_state = 6}, + [4274] = {.lex_state = 258, .external_lex_state = 6}, + [4275] = {.lex_state = 258, .external_lex_state = 6}, + [4276] = {.lex_state = 102, .external_lex_state = 6}, + [4277] = {.lex_state = 65, .external_lex_state = 17}, + [4278] = {.lex_state = 65, .external_lex_state = 18}, + [4279] = {.lex_state = 65, .external_lex_state = 19}, + [4280] = {.lex_state = 65, .external_lex_state = 20}, + [4281] = {.lex_state = 65, .external_lex_state = 21}, + [4282] = {.lex_state = 65, .external_lex_state = 22}, + [4283] = {.lex_state = 65, .external_lex_state = 21}, + [4284] = {.lex_state = 65, .external_lex_state = 20}, + [4285] = {.lex_state = 65, .external_lex_state = 19}, + [4286] = {.lex_state = 65, .external_lex_state = 17}, + [4287] = {.lex_state = 65, .external_lex_state = 23}, + [4288] = {.lex_state = 65, .external_lex_state = 24}, + [4289] = {.lex_state = 63, .external_lex_state = 25}, + [4290] = {.lex_state = 102, .external_lex_state = 6}, + [4291] = {.lex_state = 63, .external_lex_state = 26}, + [4292] = {.lex_state = 65, .external_lex_state = 21}, + [4293] = {.lex_state = 65, .external_lex_state = 20}, + [4294] = {.lex_state = 65, .external_lex_state = 19}, + [4295] = {.lex_state = 65, .external_lex_state = 17}, + [4296] = {.lex_state = 65, .external_lex_state = 23}, + [4297] = {.lex_state = 65, .external_lex_state = 24}, + [4298] = {.lex_state = 65, .external_lex_state = 18}, + [4299] = {.lex_state = 63, .external_lex_state = 26}, + [4300] = {.lex_state = 63, .external_lex_state = 25}, + [4301] = {.lex_state = 65, .external_lex_state = 24}, + [4302] = {.lex_state = 65, .external_lex_state = 23}, + [4303] = {.lex_state = 65, .external_lex_state = 17}, + [4304] = {.lex_state = 65, .external_lex_state = 19}, + [4305] = {.lex_state = 65, .external_lex_state = 20}, + [4306] = {.lex_state = 65, .external_lex_state = 21}, + [4307] = {.lex_state = 65, .external_lex_state = 22}, + [4308] = {.lex_state = 63, .external_lex_state = 25}, + [4309] = {.lex_state = 65, .external_lex_state = 23}, + [4310] = {.lex_state = 65, .external_lex_state = 18}, + [4311] = {.lex_state = 63, .external_lex_state = 25}, + [4312] = {.lex_state = 63, .external_lex_state = 26}, + [4313] = {.lex_state = 65, .external_lex_state = 18}, + [4314] = {.lex_state = 65, .external_lex_state = 24}, + [4315] = {.lex_state = 65, .external_lex_state = 17}, + [4316] = {.lex_state = 65, .external_lex_state = 24}, + [4317] = {.lex_state = 63, .external_lex_state = 26}, + [4318] = {.lex_state = 65, .external_lex_state = 18}, + [4319] = {.lex_state = 65, .external_lex_state = 22}, + [4320] = {.lex_state = 63, .external_lex_state = 25}, + [4321] = {.lex_state = 63, .external_lex_state = 26}, + [4322] = {.lex_state = 65, .external_lex_state = 22}, + [4323] = {.lex_state = 65, .external_lex_state = 20}, + [4324] = {.lex_state = 65, .external_lex_state = 19}, + [4325] = {.lex_state = 65, .external_lex_state = 18}, + [4326] = {.lex_state = 62, .external_lex_state = 7}, + [4327] = {.lex_state = 65, .external_lex_state = 23}, + [4328] = {.lex_state = 65, .external_lex_state = 17}, + [4329] = {.lex_state = 65, .external_lex_state = 18}, + [4330] = {.lex_state = 65, .external_lex_state = 19}, + [4331] = {.lex_state = 65, .external_lex_state = 20}, + [4332] = {.lex_state = 62, .external_lex_state = 13}, + [4333] = {.lex_state = 65, .external_lex_state = 21}, + [4334] = {.lex_state = 63, .external_lex_state = 26}, + [4335] = {.lex_state = 63, .external_lex_state = 25}, + [4336] = {.lex_state = 65, .external_lex_state = 24}, + [4337] = {.lex_state = 65, .external_lex_state = 18}, + [4338] = {.lex_state = 65, .external_lex_state = 23}, + [4339] = {.lex_state = 65, .external_lex_state = 22}, + [4340] = {.lex_state = 65, .external_lex_state = 18}, + [4341] = {.lex_state = 63, .external_lex_state = 26}, + [4342] = {.lex_state = 65, .external_lex_state = 17}, + [4343] = {.lex_state = 63, .external_lex_state = 26}, + [4344] = {.lex_state = 63, .external_lex_state = 25}, + [4345] = {.lex_state = 65, .external_lex_state = 18}, + [4346] = {.lex_state = 63, .external_lex_state = 26}, + [4347] = {.lex_state = 63, .external_lex_state = 25}, + [4348] = {.lex_state = 65, .external_lex_state = 24}, + [4349] = {.lex_state = 65, .external_lex_state = 23}, + [4350] = {.lex_state = 65, .external_lex_state = 17}, + [4351] = {.lex_state = 65, .external_lex_state = 19}, + [4352] = {.lex_state = 65, .external_lex_state = 20}, + [4353] = {.lex_state = 65, .external_lex_state = 21}, + [4354] = {.lex_state = 65, .external_lex_state = 22}, + [4355] = {.lex_state = 65, .external_lex_state = 24}, + [4356] = {.lex_state = 62, .external_lex_state = 16}, + [4357] = {.lex_state = 100, .external_lex_state = 6}, + [4358] = {.lex_state = 65, .external_lex_state = 23}, + [4359] = {.lex_state = 65, .external_lex_state = 17}, + [4360] = {.lex_state = 65, .external_lex_state = 17}, + [4361] = {.lex_state = 65, .external_lex_state = 18}, + [4362] = {.lex_state = 63, .external_lex_state = 26}, + [4363] = {.lex_state = 63, .external_lex_state = 25}, + [4364] = {.lex_state = 65, .external_lex_state = 24}, + [4365] = {.lex_state = 65, .external_lex_state = 23}, + [4366] = {.lex_state = 65, .external_lex_state = 17}, + [4367] = {.lex_state = 65, .external_lex_state = 19}, + [4368] = {.lex_state = 65, .external_lex_state = 20}, + [4369] = {.lex_state = 65, .external_lex_state = 21}, + [4370] = {.lex_state = 65, .external_lex_state = 22}, + [4371] = {.lex_state = 63, .external_lex_state = 25}, + [4372] = {.lex_state = 62, .external_lex_state = 9}, + [4373] = {.lex_state = 65, .external_lex_state = 19}, + [4374] = {.lex_state = 65, .external_lex_state = 20}, + [4375] = {.lex_state = 65, .external_lex_state = 21}, + [4376] = {.lex_state = 62, .external_lex_state = 8}, + [4377] = {.lex_state = 65, .external_lex_state = 22}, + [4378] = {.lex_state = 258, .external_lex_state = 6}, + [4379] = {.lex_state = 64, .external_lex_state = 12}, + [4380] = {.lex_state = 65, .external_lex_state = 18}, + [4381] = {.lex_state = 63, .external_lex_state = 26}, + [4382] = {.lex_state = 65, .external_lex_state = 19}, + [4383] = {.lex_state = 100, .external_lex_state = 6}, + [4384] = {.lex_state = 65, .external_lex_state = 20}, + [4385] = {.lex_state = 65, .external_lex_state = 21}, + [4386] = {.lex_state = 65, .external_lex_state = 22}, + [4387] = {.lex_state = 100, .external_lex_state = 6}, + [4388] = {.lex_state = 63, .external_lex_state = 25}, + [4389] = {.lex_state = 65, .external_lex_state = 24}, + [4390] = {.lex_state = 65, .external_lex_state = 22}, + [4391] = {.lex_state = 65, .external_lex_state = 18}, + [4392] = {.lex_state = 63, .external_lex_state = 26}, + [4393] = {.lex_state = 63, .external_lex_state = 25}, + [4394] = {.lex_state = 65, .external_lex_state = 24}, + [4395] = {.lex_state = 65, .external_lex_state = 23}, + [4396] = {.lex_state = 65, .external_lex_state = 17}, + [4397] = {.lex_state = 65, .external_lex_state = 19}, + [4398] = {.lex_state = 65, .external_lex_state = 20}, + [4399] = {.lex_state = 65, .external_lex_state = 21}, + [4400] = {.lex_state = 65, .external_lex_state = 22}, + [4401] = {.lex_state = 65, .external_lex_state = 21}, + [4402] = {.lex_state = 65, .external_lex_state = 20}, + [4403] = {.lex_state = 65, .external_lex_state = 19}, + [4404] = {.lex_state = 65, .external_lex_state = 17}, + [4405] = {.lex_state = 65, .external_lex_state = 23}, + [4406] = {.lex_state = 65, .external_lex_state = 24}, + [4407] = {.lex_state = 65, .external_lex_state = 18}, + [4408] = {.lex_state = 63, .external_lex_state = 26}, + [4409] = {.lex_state = 63, .external_lex_state = 25}, + [4410] = {.lex_state = 65, .external_lex_state = 24}, + [4411] = {.lex_state = 65, .external_lex_state = 23}, + [4412] = {.lex_state = 65, .external_lex_state = 21}, + [4413] = {.lex_state = 65, .external_lex_state = 19}, + [4414] = {.lex_state = 65, .external_lex_state = 20}, + [4415] = {.lex_state = 65, .external_lex_state = 21}, + [4416] = {.lex_state = 65, .external_lex_state = 22}, + [4417] = {.lex_state = 100, .external_lex_state = 6}, + [4418] = {.lex_state = 63, .external_lex_state = 25}, + [4419] = {.lex_state = 62, .external_lex_state = 15}, + [4420] = {.lex_state = 63, .external_lex_state = 26}, + [4421] = {.lex_state = 65, .external_lex_state = 18}, + [4422] = {.lex_state = 62, .external_lex_state = 14}, + [4423] = {.lex_state = 65, .external_lex_state = 24}, + [4424] = {.lex_state = 65, .external_lex_state = 23}, + [4425] = {.lex_state = 65, .external_lex_state = 23}, + [4426] = {.lex_state = 65, .external_lex_state = 17}, + [4427] = {.lex_state = 65, .external_lex_state = 24}, + [4428] = {.lex_state = 65, .external_lex_state = 19}, + [4429] = {.lex_state = 65, .external_lex_state = 24}, + [4430] = {.lex_state = 65, .external_lex_state = 20}, + [4431] = {.lex_state = 65, .external_lex_state = 19}, + [4432] = {.lex_state = 65, .external_lex_state = 18}, + [4433] = {.lex_state = 63, .external_lex_state = 26}, + [4434] = {.lex_state = 65, .external_lex_state = 23}, + [4435] = {.lex_state = 63, .external_lex_state = 25}, + [4436] = {.lex_state = 65, .external_lex_state = 18}, + [4437] = {.lex_state = 65, .external_lex_state = 18}, + [4438] = {.lex_state = 63, .external_lex_state = 26}, + [4439] = {.lex_state = 63, .external_lex_state = 25}, + [4440] = {.lex_state = 65, .external_lex_state = 24}, + [4441] = {.lex_state = 65, .external_lex_state = 23}, + [4442] = {.lex_state = 65, .external_lex_state = 17}, + [4443] = {.lex_state = 65, .external_lex_state = 19}, + [4444] = {.lex_state = 65, .external_lex_state = 20}, + [4445] = {.lex_state = 65, .external_lex_state = 21}, + [4446] = {.lex_state = 65, .external_lex_state = 22}, + [4447] = {.lex_state = 65, .external_lex_state = 20}, + [4448] = {.lex_state = 65, .external_lex_state = 22}, + [4449] = {.lex_state = 65, .external_lex_state = 21}, + [4450] = {.lex_state = 65, .external_lex_state = 20}, + [4451] = {.lex_state = 65, .external_lex_state = 19}, + [4452] = {.lex_state = 65, .external_lex_state = 17}, + [4453] = {.lex_state = 65, .external_lex_state = 18}, + [4454] = {.lex_state = 63, .external_lex_state = 26}, + [4455] = {.lex_state = 63, .external_lex_state = 25}, + [4456] = {.lex_state = 65, .external_lex_state = 24}, + [4457] = {.lex_state = 65, .external_lex_state = 23}, + [4458] = {.lex_state = 65, .external_lex_state = 17}, + [4459] = {.lex_state = 65, .external_lex_state = 19}, + [4460] = {.lex_state = 65, .external_lex_state = 20}, + [4461] = {.lex_state = 65, .external_lex_state = 21}, + [4462] = {.lex_state = 65, .external_lex_state = 22}, + [4463] = {.lex_state = 65, .external_lex_state = 22}, + [4464] = {.lex_state = 65, .external_lex_state = 23}, + [4465] = {.lex_state = 65, .external_lex_state = 24}, + [4466] = {.lex_state = 63, .external_lex_state = 25}, + [4467] = {.lex_state = 63, .external_lex_state = 26}, + [4468] = {.lex_state = 65, .external_lex_state = 21}, + [4469] = {.lex_state = 65, .external_lex_state = 18}, + [4470] = {.lex_state = 65, .external_lex_state = 24}, + [4471] = {.lex_state = 65, .external_lex_state = 23}, + [4472] = {.lex_state = 65, .external_lex_state = 18}, + [4473] = {.lex_state = 65, .external_lex_state = 20}, + [4474] = {.lex_state = 65, .external_lex_state = 19}, + [4475] = {.lex_state = 65, .external_lex_state = 17}, + [4476] = {.lex_state = 65, .external_lex_state = 23}, + [4477] = {.lex_state = 63, .external_lex_state = 26}, + [4478] = {.lex_state = 63, .external_lex_state = 26}, + [4479] = {.lex_state = 63, .external_lex_state = 25}, + [4480] = {.lex_state = 65, .external_lex_state = 21}, + [4481] = {.lex_state = 65, .external_lex_state = 24}, + [4482] = {.lex_state = 65, .external_lex_state = 18}, + [4483] = {.lex_state = 65, .external_lex_state = 17}, + [4484] = {.lex_state = 63, .external_lex_state = 26}, + [4485] = {.lex_state = 63, .external_lex_state = 25}, + [4486] = {.lex_state = 65, .external_lex_state = 24}, + [4487] = {.lex_state = 65, .external_lex_state = 23}, + [4488] = {.lex_state = 65, .external_lex_state = 17}, + [4489] = {.lex_state = 65, .external_lex_state = 19}, + [4490] = {.lex_state = 65, .external_lex_state = 20}, + [4491] = {.lex_state = 65, .external_lex_state = 21}, + [4492] = {.lex_state = 65, .external_lex_state = 22}, + [4493] = {.lex_state = 65, .external_lex_state = 22}, + [4494] = {.lex_state = 65, .external_lex_state = 21}, + [4495] = {.lex_state = 63, .external_lex_state = 26}, + [4496] = {.lex_state = 65, .external_lex_state = 24}, + [4497] = {.lex_state = 65, .external_lex_state = 23}, + [4498] = {.lex_state = 63, .external_lex_state = 25}, + [4499] = {.lex_state = 65, .external_lex_state = 18}, + [4500] = {.lex_state = 63, .external_lex_state = 26}, + [4501] = {.lex_state = 63, .external_lex_state = 25}, + [4502] = {.lex_state = 65, .external_lex_state = 24}, + [4503] = {.lex_state = 65, .external_lex_state = 23}, + [4504] = {.lex_state = 65, .external_lex_state = 17}, + [4505] = {.lex_state = 65, .external_lex_state = 19}, + [4506] = {.lex_state = 65, .external_lex_state = 20}, + [4507] = {.lex_state = 65, .external_lex_state = 21}, + [4508] = {.lex_state = 65, .external_lex_state = 22}, + [4509] = {.lex_state = 65, .external_lex_state = 20}, + [4510] = {.lex_state = 65, .external_lex_state = 24}, + [4511] = {.lex_state = 65, .external_lex_state = 19}, + [4512] = {.lex_state = 65, .external_lex_state = 17}, + [4513] = {.lex_state = 65, .external_lex_state = 23}, + [4514] = {.lex_state = 65, .external_lex_state = 17}, + [4515] = {.lex_state = 63, .external_lex_state = 25}, + [4516] = {.lex_state = 65, .external_lex_state = 19}, + [4517] = {.lex_state = 100, .external_lex_state = 6}, + [4518] = {.lex_state = 65, .external_lex_state = 19}, + [4519] = {.lex_state = 63, .external_lex_state = 25}, + [4520] = {.lex_state = 63, .external_lex_state = 26}, + [4521] = {.lex_state = 65, .external_lex_state = 17}, + [4522] = {.lex_state = 65, .external_lex_state = 18}, + [4523] = {.lex_state = 65, .external_lex_state = 20}, + [4524] = {.lex_state = 65, .external_lex_state = 21}, + [4525] = {.lex_state = 65, .external_lex_state = 22}, + [4526] = {.lex_state = 65, .external_lex_state = 20}, + [4527] = {.lex_state = 65, .external_lex_state = 23}, + [4528] = {.lex_state = 100, .external_lex_state = 6}, + [4529] = {.lex_state = 65, .external_lex_state = 18}, + [4530] = {.lex_state = 63, .external_lex_state = 26}, + [4531] = {.lex_state = 63, .external_lex_state = 25}, + [4532] = {.lex_state = 65, .external_lex_state = 24}, + [4533] = {.lex_state = 65, .external_lex_state = 23}, + [4534] = {.lex_state = 65, .external_lex_state = 17}, + [4535] = {.lex_state = 65, .external_lex_state = 19}, + [4536] = {.lex_state = 65, .external_lex_state = 20}, + [4537] = {.lex_state = 65, .external_lex_state = 21}, + [4538] = {.lex_state = 65, .external_lex_state = 22}, + [4539] = {.lex_state = 65, .external_lex_state = 18}, + [4540] = {.lex_state = 63, .external_lex_state = 26}, + [4541] = {.lex_state = 63, .external_lex_state = 25}, + [4542] = {.lex_state = 65, .external_lex_state = 24}, + [4543] = {.lex_state = 65, .external_lex_state = 23}, + [4544] = {.lex_state = 65, .external_lex_state = 17}, + [4545] = {.lex_state = 65, .external_lex_state = 18}, + [4546] = {.lex_state = 63, .external_lex_state = 26}, + [4547] = {.lex_state = 63, .external_lex_state = 25}, + [4548] = {.lex_state = 65, .external_lex_state = 24}, + [4549] = {.lex_state = 65, .external_lex_state = 23}, + [4550] = {.lex_state = 65, .external_lex_state = 17}, + [4551] = {.lex_state = 65, .external_lex_state = 19}, + [4552] = {.lex_state = 65, .external_lex_state = 20}, + [4553] = {.lex_state = 65, .external_lex_state = 21}, + [4554] = {.lex_state = 65, .external_lex_state = 22}, + [4555] = {.lex_state = 100, .external_lex_state = 6}, + [4556] = {.lex_state = 63, .external_lex_state = 26}, + [4557] = {.lex_state = 65, .external_lex_state = 22}, + [4558] = {.lex_state = 65, .external_lex_state = 21}, + [4559] = {.lex_state = 65, .external_lex_state = 20}, + [4560] = {.lex_state = 63, .external_lex_state = 25}, + [4561] = {.lex_state = 65, .external_lex_state = 19}, + [4562] = {.lex_state = 65, .external_lex_state = 17}, + [4563] = {.lex_state = 65, .external_lex_state = 23}, + [4564] = {.lex_state = 65, .external_lex_state = 24}, + [4565] = {.lex_state = 63, .external_lex_state = 25}, + [4566] = {.lex_state = 63, .external_lex_state = 26}, + [4567] = {.lex_state = 65, .external_lex_state = 18}, + [4568] = {.lex_state = 63, .external_lex_state = 26}, + [4569] = {.lex_state = 65, .external_lex_state = 18}, + [4570] = {.lex_state = 65, .external_lex_state = 19}, + [4571] = {.lex_state = 65, .external_lex_state = 21}, + [4572] = {.lex_state = 65, .external_lex_state = 20}, + [4573] = {.lex_state = 65, .external_lex_state = 22}, + [4574] = {.lex_state = 65, .external_lex_state = 21}, + [4575] = {.lex_state = 65, .external_lex_state = 18}, + [4576] = {.lex_state = 63, .external_lex_state = 26}, + [4577] = {.lex_state = 63, .external_lex_state = 25}, + [4578] = {.lex_state = 65, .external_lex_state = 24}, + [4579] = {.lex_state = 65, .external_lex_state = 23}, + [4580] = {.lex_state = 65, .external_lex_state = 17}, + [4581] = {.lex_state = 65, .external_lex_state = 19}, + [4582] = {.lex_state = 65, .external_lex_state = 20}, + [4583] = {.lex_state = 65, .external_lex_state = 21}, + [4584] = {.lex_state = 65, .external_lex_state = 22}, + [4585] = {.lex_state = 65, .external_lex_state = 21}, + [4586] = {.lex_state = 65, .external_lex_state = 22}, + [4587] = {.lex_state = 65, .external_lex_state = 22}, + [4588] = {.lex_state = 65, .external_lex_state = 22}, + [4589] = {.lex_state = 65, .external_lex_state = 21}, + [4590] = {.lex_state = 63, .external_lex_state = 25}, + [4591] = {.lex_state = 65, .external_lex_state = 18}, + [4592] = {.lex_state = 63, .external_lex_state = 26}, + [4593] = {.lex_state = 63, .external_lex_state = 25}, + [4594] = {.lex_state = 65, .external_lex_state = 24}, + [4595] = {.lex_state = 65, .external_lex_state = 23}, + [4596] = {.lex_state = 65, .external_lex_state = 17}, + [4597] = {.lex_state = 65, .external_lex_state = 19}, + [4598] = {.lex_state = 65, .external_lex_state = 20}, + [4599] = {.lex_state = 65, .external_lex_state = 21}, + [4600] = {.lex_state = 65, .external_lex_state = 22}, + [4601] = {.lex_state = 65, .external_lex_state = 22}, + [4602] = {.lex_state = 65, .external_lex_state = 21}, + [4603] = {.lex_state = 65, .external_lex_state = 20}, + [4604] = {.lex_state = 65, .external_lex_state = 19}, + [4605] = {.lex_state = 65, .external_lex_state = 17}, + [4606] = {.lex_state = 65, .external_lex_state = 17}, + [4607] = {.lex_state = 65, .external_lex_state = 23}, + [4608] = {.lex_state = 65, .external_lex_state = 24}, + [4609] = {.lex_state = 63, .external_lex_state = 25}, + [4610] = {.lex_state = 63, .external_lex_state = 26}, + [4611] = {.lex_state = 65, .external_lex_state = 19}, + [4612] = {.lex_state = 65, .external_lex_state = 18}, + [4613] = {.lex_state = 65, .external_lex_state = 20}, + [4614] = {.lex_state = 65, .external_lex_state = 21}, + [4615] = {.lex_state = 65, .external_lex_state = 22}, + [4616] = {.lex_state = 65, .external_lex_state = 21}, + [4617] = {.lex_state = 65, .external_lex_state = 20}, + [4618] = {.lex_state = 65, .external_lex_state = 22}, + [4619] = {.lex_state = 65, .external_lex_state = 19}, + [4620] = {.lex_state = 65, .external_lex_state = 17}, + [4621] = {.lex_state = 65, .external_lex_state = 23}, + [4622] = {.lex_state = 65, .external_lex_state = 24}, + [4623] = {.lex_state = 64, .external_lex_state = 11}, + [4624] = {.lex_state = 100, .external_lex_state = 6}, + [4625] = {.lex_state = 63, .external_lex_state = 25}, + [4626] = {.lex_state = 63, .external_lex_state = 26}, + [4627] = {.lex_state = 65, .external_lex_state = 22}, + [4628] = {.lex_state = 65, .external_lex_state = 18}, + [4629] = {.lex_state = 65, .external_lex_state = 20}, + [4630] = {.lex_state = 100, .external_lex_state = 6}, + [4631] = {.lex_state = 100, .external_lex_state = 6}, + [4632] = {.lex_state = 65, .external_lex_state = 18}, + [4633] = {.lex_state = 63, .external_lex_state = 26}, + [4634] = {.lex_state = 63, .external_lex_state = 25}, + [4635] = {.lex_state = 65, .external_lex_state = 24}, + [4636] = {.lex_state = 65, .external_lex_state = 23}, + [4637] = {.lex_state = 65, .external_lex_state = 17}, + [4638] = {.lex_state = 65, .external_lex_state = 19}, + [4639] = {.lex_state = 65, .external_lex_state = 20}, + [4640] = {.lex_state = 65, .external_lex_state = 21}, + [4641] = {.lex_state = 65, .external_lex_state = 22}, + [4642] = {.lex_state = 65, .external_lex_state = 19}, + [4643] = {.lex_state = 65, .external_lex_state = 17}, + [4644] = {.lex_state = 65, .external_lex_state = 18}, + [4645] = {.lex_state = 65, .external_lex_state = 22}, + [4646] = {.lex_state = 65, .external_lex_state = 21}, + [4647] = {.lex_state = 65, .external_lex_state = 20}, + [4648] = {.lex_state = 65, .external_lex_state = 19}, + [4649] = {.lex_state = 65, .external_lex_state = 17}, + [4650] = {.lex_state = 65, .external_lex_state = 23}, + [4651] = {.lex_state = 65, .external_lex_state = 24}, + [4652] = {.lex_state = 63, .external_lex_state = 25}, + [4653] = {.lex_state = 63, .external_lex_state = 26}, + [4654] = {.lex_state = 65, .external_lex_state = 18}, + [4655] = {.lex_state = 65, .external_lex_state = 22}, + [4656] = {.lex_state = 62, .external_lex_state = 10}, + [4657] = {.lex_state = 100, .external_lex_state = 6}, + [4658] = {.lex_state = 65, .external_lex_state = 23}, + [4659] = {.lex_state = 102, .external_lex_state = 6}, + [4660] = {.lex_state = 100, .external_lex_state = 6}, + [4661] = {.lex_state = 65, .external_lex_state = 22}, + [4662] = {.lex_state = 65, .external_lex_state = 21}, + [4663] = {.lex_state = 65, .external_lex_state = 20}, + [4664] = {.lex_state = 65, .external_lex_state = 19}, + [4665] = {.lex_state = 65, .external_lex_state = 17}, + [4666] = {.lex_state = 65, .external_lex_state = 23}, + [4667] = {.lex_state = 65, .external_lex_state = 24}, + [4668] = {.lex_state = 63, .external_lex_state = 25}, + [4669] = {.lex_state = 63, .external_lex_state = 26}, + [4670] = {.lex_state = 65, .external_lex_state = 18}, + [4671] = {.lex_state = 65, .external_lex_state = 24}, + [4672] = {.lex_state = 50, .external_lex_state = 6}, + [4673] = {.lex_state = 50, .external_lex_state = 6}, + [4674] = {.lex_state = 258, .external_lex_state = 6}, + [4675] = {.lex_state = 258, .external_lex_state = 6}, + [4676] = {.lex_state = 50, .external_lex_state = 6}, + [4677] = {.lex_state = 50, .external_lex_state = 6}, + [4678] = {.lex_state = 102, .external_lex_state = 6}, + [4679] = {.lex_state = 258, .external_lex_state = 6}, + [4680] = {.lex_state = 50, .external_lex_state = 6}, + [4681] = {.lex_state = 50, .external_lex_state = 6}, + [4682] = {.lex_state = 50, .external_lex_state = 6}, + [4683] = {.lex_state = 258, .external_lex_state = 6}, + [4684] = {.lex_state = 50, .external_lex_state = 6}, + [4685] = {.lex_state = 102, .external_lex_state = 6}, + [4686] = {.lex_state = 102, .external_lex_state = 6}, + [4687] = {.lex_state = 102, .external_lex_state = 6}, + [4688] = {.lex_state = 102, .external_lex_state = 6}, + [4689] = {.lex_state = 102, .external_lex_state = 6}, + [4690] = {.lex_state = 53, .external_lex_state = 6}, + [4691] = {.lex_state = 102, .external_lex_state = 6}, + [4692] = {.lex_state = 102, .external_lex_state = 6}, + [4693] = {.lex_state = 102, .external_lex_state = 6}, + [4694] = {.lex_state = 102, .external_lex_state = 6}, + [4695] = {.lex_state = 258, .external_lex_state = 6}, + [4696] = {.lex_state = 102, .external_lex_state = 6}, + [4697] = {.lex_state = 102, .external_lex_state = 6}, + [4698] = {.lex_state = 53, .external_lex_state = 6}, + [4699] = {.lex_state = 258, .external_lex_state = 6}, + [4700] = {.lex_state = 53, .external_lex_state = 6}, + [4701] = {.lex_state = 53, .external_lex_state = 6}, + [4702] = {.lex_state = 53, .external_lex_state = 6}, + [4703] = {.lex_state = 53, .external_lex_state = 6}, + [4704] = {.lex_state = 53, .external_lex_state = 6}, + [4705] = {.lex_state = 102, .external_lex_state = 6}, + [4706] = {.lex_state = 53, .external_lex_state = 6}, + [4707] = {.lex_state = 102, .external_lex_state = 6}, + [4708] = {.lex_state = 102, .external_lex_state = 6}, + [4709] = {.lex_state = 258, .external_lex_state = 6}, + [4710] = {.lex_state = 102, .external_lex_state = 6}, + [4711] = {.lex_state = 102, .external_lex_state = 6}, + [4712] = {.lex_state = 102, .external_lex_state = 6}, + [4713] = {.lex_state = 102, .external_lex_state = 6}, + [4714] = {.lex_state = 102, .external_lex_state = 6}, + [4715] = {.lex_state = 258, .external_lex_state = 6}, + [4716] = {.lex_state = 53, .external_lex_state = 6}, + [4717] = {.lex_state = 102, .external_lex_state = 6}, + [4718] = {.lex_state = 102, .external_lex_state = 6}, + [4719] = {.lex_state = 258, .external_lex_state = 6}, + [4720] = {.lex_state = 258, .external_lex_state = 6}, + [4721] = {.lex_state = 102, .external_lex_state = 6}, + [4722] = {.lex_state = 53, .external_lex_state = 6}, + [4723] = {.lex_state = 102, .external_lex_state = 6}, + [4724] = {.lex_state = 102, .external_lex_state = 6}, + [4725] = {.lex_state = 53, .external_lex_state = 6}, + [4726] = {.lex_state = 102, .external_lex_state = 6}, + [4727] = {.lex_state = 102, .external_lex_state = 6}, + [4728] = {.lex_state = 53, .external_lex_state = 6}, + [4729] = {.lex_state = 53, .external_lex_state = 6}, + [4730] = {.lex_state = 102, .external_lex_state = 6}, + [4731] = {.lex_state = 53, .external_lex_state = 6}, + [4732] = {.lex_state = 258, .external_lex_state = 6}, + [4733] = {.lex_state = 102, .external_lex_state = 6}, + [4734] = {.lex_state = 53, .external_lex_state = 6}, + [4735] = {.lex_state = 102, .external_lex_state = 6}, + [4736] = {.lex_state = 258, .external_lex_state = 6}, + [4737] = {.lex_state = 102, .external_lex_state = 6}, + [4738] = {.lex_state = 102, .external_lex_state = 6}, + [4739] = {.lex_state = 102, .external_lex_state = 6}, + [4740] = {.lex_state = 102, .external_lex_state = 6}, + [4741] = {.lex_state = 102, .external_lex_state = 6}, + [4742] = {.lex_state = 102, .external_lex_state = 6}, + [4743] = {.lex_state = 53, .external_lex_state = 6}, + [4744] = {.lex_state = 258, .external_lex_state = 6}, + [4745] = {.lex_state = 102, .external_lex_state = 6}, + [4746] = {.lex_state = 102, .external_lex_state = 6}, + [4747] = {.lex_state = 102, .external_lex_state = 6}, + [4748] = {.lex_state = 102, .external_lex_state = 6}, + [4749] = {.lex_state = 102, .external_lex_state = 6}, + [4750] = {.lex_state = 53, .external_lex_state = 6}, + [4751] = {.lex_state = 102, .external_lex_state = 6}, + [4752] = {.lex_state = 258, .external_lex_state = 6}, + [4753] = {.lex_state = 102, .external_lex_state = 6}, + [4754] = {.lex_state = 102, .external_lex_state = 6}, + [4755] = {.lex_state = 53, .external_lex_state = 6}, + [4756] = {.lex_state = 102, .external_lex_state = 6}, + [4757] = {.lex_state = 258, .external_lex_state = 6}, + [4758] = {.lex_state = 102, .external_lex_state = 6}, + [4759] = {.lex_state = 258, .external_lex_state = 6}, + [4760] = {.lex_state = 102, .external_lex_state = 6}, + [4761] = {.lex_state = 102, .external_lex_state = 6}, + [4762] = {.lex_state = 258, .external_lex_state = 6}, + [4763] = {.lex_state = 258, .external_lex_state = 6}, + [4764] = {.lex_state = 258, .external_lex_state = 6}, + [4765] = {.lex_state = 258, .external_lex_state = 6}, + [4766] = {.lex_state = 258, .external_lex_state = 6}, + [4767] = {.lex_state = 258, .external_lex_state = 6}, + [4768] = {.lex_state = 258, .external_lex_state = 6}, + [4769] = {.lex_state = 258, .external_lex_state = 6}, + [4770] = {.lex_state = 258, .external_lex_state = 6}, + [4771] = {.lex_state = 258, .external_lex_state = 6}, + [4772] = {.lex_state = 258, .external_lex_state = 6}, + [4773] = {.lex_state = 258, .external_lex_state = 6}, + [4774] = {.lex_state = 258, .external_lex_state = 6}, + [4775] = {.lex_state = 258, .external_lex_state = 6}, + [4776] = {.lex_state = 258, .external_lex_state = 6}, + [4777] = {.lex_state = 50, .external_lex_state = 6}, + [4778] = {.lex_state = 100, .external_lex_state = 6}, + [4779] = {.lex_state = 258, .external_lex_state = 6}, + [4780] = {.lex_state = 258, .external_lex_state = 6}, + [4781] = {.lex_state = 258, .external_lex_state = 6}, + [4782] = {.lex_state = 258, .external_lex_state = 6}, + [4783] = {.lex_state = 50, .external_lex_state = 6}, + [4784] = {.lex_state = 100, .external_lex_state = 6}, + [4785] = {.lex_state = 258, .external_lex_state = 6}, + [4786] = {.lex_state = 258, .external_lex_state = 6}, + [4787] = {.lex_state = 258, .external_lex_state = 6}, + [4788] = {.lex_state = 258, .external_lex_state = 6}, + [4789] = {.lex_state = 100, .external_lex_state = 6}, + [4790] = {.lex_state = 100, .external_lex_state = 6}, + [4791] = {.lex_state = 258, .external_lex_state = 6}, + [4792] = {.lex_state = 258, .external_lex_state = 6}, + [4793] = {.lex_state = 258, .external_lex_state = 6}, + [4794] = {.lex_state = 100, .external_lex_state = 6}, + [4795] = {.lex_state = 258, .external_lex_state = 6}, + [4796] = {.lex_state = 50, .external_lex_state = 6}, + [4797] = {.lex_state = 258, .external_lex_state = 6}, + [4798] = {.lex_state = 50, .external_lex_state = 6}, + [4799] = {.lex_state = 258, .external_lex_state = 6}, + [4800] = {.lex_state = 258, .external_lex_state = 6}, + [4801] = {.lex_state = 258, .external_lex_state = 6}, + [4802] = {.lex_state = 258, .external_lex_state = 6}, + [4803] = {.lex_state = 100, .external_lex_state = 6}, + [4804] = {.lex_state = 258, .external_lex_state = 6}, + [4805] = {.lex_state = 258, .external_lex_state = 6}, + [4806] = {.lex_state = 258, .external_lex_state = 6}, + [4807] = {.lex_state = 258, .external_lex_state = 6}, + [4808] = {.lex_state = 258, .external_lex_state = 6}, + [4809] = {.lex_state = 258, .external_lex_state = 6}, + [4810] = {.lex_state = 258, .external_lex_state = 6}, + [4811] = {.lex_state = 258, .external_lex_state = 6}, + [4812] = {.lex_state = 258, .external_lex_state = 6}, + [4813] = {.lex_state = 100, .external_lex_state = 6}, + [4814] = {.lex_state = 258, .external_lex_state = 6}, + [4815] = {.lex_state = 258, .external_lex_state = 6}, + [4816] = {.lex_state = 258, .external_lex_state = 6}, + [4817] = {.lex_state = 258, .external_lex_state = 6}, + [4818] = {.lex_state = 258, .external_lex_state = 6}, + [4819] = {.lex_state = 50, .external_lex_state = 6}, + [4820] = {.lex_state = 258, .external_lex_state = 6}, + [4821] = {.lex_state = 258, .external_lex_state = 6}, + [4822] = {.lex_state = 258, .external_lex_state = 6}, + [4823] = {.lex_state = 258, .external_lex_state = 6}, + [4824] = {.lex_state = 258, .external_lex_state = 6}, + [4825] = {.lex_state = 258, .external_lex_state = 6}, + [4826] = {.lex_state = 50, .external_lex_state = 6}, + [4827] = {.lex_state = 258, .external_lex_state = 6}, + [4828] = {.lex_state = 50, .external_lex_state = 6}, + [4829] = {.lex_state = 100, .external_lex_state = 6}, + [4830] = {.lex_state = 258, .external_lex_state = 6}, + [4831] = {.lex_state = 258, .external_lex_state = 6}, + [4832] = {.lex_state = 258, .external_lex_state = 6}, + [4833] = {.lex_state = 258, .external_lex_state = 6}, + [4834] = {.lex_state = 258, .external_lex_state = 6}, + [4835] = {.lex_state = 258, .external_lex_state = 6}, + [4836] = {.lex_state = 100, .external_lex_state = 6}, + [4837] = {.lex_state = 258, .external_lex_state = 6}, + [4838] = {.lex_state = 50, .external_lex_state = 6}, + [4839] = {.lex_state = 258, .external_lex_state = 6}, + [4840] = {.lex_state = 258, .external_lex_state = 6}, + [4841] = {.lex_state = 258, .external_lex_state = 6}, + [4842] = {.lex_state = 258, .external_lex_state = 6}, + [4843] = {.lex_state = 258, .external_lex_state = 6}, + [4844] = {.lex_state = 258, .external_lex_state = 6}, + [4845] = {.lex_state = 258, .external_lex_state = 6}, + [4846] = {.lex_state = 50, .external_lex_state = 6}, + [4847] = {.lex_state = 258, .external_lex_state = 6}, + [4848] = {.lex_state = 258, .external_lex_state = 6}, + [4849] = {.lex_state = 258, .external_lex_state = 6}, + [4850] = {.lex_state = 258, .external_lex_state = 6}, + [4851] = {.lex_state = 258, .external_lex_state = 6}, + [4852] = {.lex_state = 258, .external_lex_state = 6}, + [4853] = {.lex_state = 258, .external_lex_state = 6}, + [4854] = {.lex_state = 258, .external_lex_state = 6}, + [4855] = {.lex_state = 258, .external_lex_state = 6}, + [4856] = {.lex_state = 258, .external_lex_state = 6}, + [4857] = {.lex_state = 258, .external_lex_state = 6}, + [4858] = {.lex_state = 258, .external_lex_state = 6}, + [4859] = {.lex_state = 258, .external_lex_state = 6}, + [4860] = {.lex_state = 258, .external_lex_state = 6}, + [4861] = {.lex_state = 258, .external_lex_state = 6}, + [4862] = {.lex_state = 258, .external_lex_state = 6}, + [4863] = {.lex_state = 258, .external_lex_state = 6}, + [4864] = {.lex_state = 100, .external_lex_state = 6}, + [4865] = {.lex_state = 50, .external_lex_state = 6}, + [4866] = {.lex_state = 258, .external_lex_state = 6}, + [4867] = {.lex_state = 258, .external_lex_state = 6}, + [4868] = {.lex_state = 258, .external_lex_state = 6}, + [4869] = {.lex_state = 258, .external_lex_state = 6}, + [4870] = {.lex_state = 50, .external_lex_state = 6}, + [4871] = {.lex_state = 258, .external_lex_state = 6}, + [4872] = {.lex_state = 258, .external_lex_state = 6}, + [4873] = {.lex_state = 258, .external_lex_state = 6}, + [4874] = {.lex_state = 100, .external_lex_state = 6}, + [4875] = {.lex_state = 258, .external_lex_state = 6}, + [4876] = {.lex_state = 258, .external_lex_state = 6}, + [4877] = {.lex_state = 100, .external_lex_state = 6}, + [4878] = {.lex_state = 258, .external_lex_state = 6}, + [4879] = {.lex_state = 258, .external_lex_state = 6}, + [4880] = {.lex_state = 258, .external_lex_state = 6}, + [4881] = {.lex_state = 258, .external_lex_state = 6}, + [4882] = {.lex_state = 50, .external_lex_state = 6}, + [4883] = {.lex_state = 258, .external_lex_state = 6}, + [4884] = {.lex_state = 258, .external_lex_state = 6}, + [4885] = {.lex_state = 258, .external_lex_state = 6}, + [4886] = {.lex_state = 258, .external_lex_state = 6}, + [4887] = {.lex_state = 258, .external_lex_state = 6}, + [4888] = {.lex_state = 258, .external_lex_state = 6}, }; enum { @@ -21910,14 +22695,12 @@ enum { 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, + ts_external_token__newline_before_do = 20, + ts_external_token__newline_before_binary_operator = 21, + ts_external_token__newline_before_comment = 22, + ts_external_token__before_unary_op = 23, + ts_external_token__not_in = 24, + ts_external_token__quoted_atom_start = 25, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -21941,17 +22724,15 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [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_binary_operator] = sym__newline_before_binary_operator, [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, + [ts_external_token__quoted_atom_start] = sym__quoted_atom_start, }; -static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[27][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__quoted_content_i_single] = true, [ts_external_token__quoted_content_i_double] = true, @@ -21973,202 +22754,141 @@ static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { [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_binary_operator] = true, [ts_external_token__newline_before_comment] = true, [ts_external_token__before_unary_op] = true, [ts_external_token__not_in] = true, + [ts_external_token__quoted_atom_start] = true, }, [2] = { - [ts_external_token__atom_start] = true, - [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, [ts_external_token__before_unary_op] = true, [ts_external_token__not_in] = true, + [ts_external_token__quoted_atom_start] = 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_do] = true, + [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, [ts_external_token__before_unary_op] = true, [ts_external_token__not_in] = true, + [ts_external_token__quoted_atom_start] = 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_binary_operator] = 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_binary_operator] = 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_binary_operator] = 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__quoted_content_i_single] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_i_slash] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_i_bar] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_i_double] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_i_heredoc_single] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_i_heredoc_double] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_i_square] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_i_curly] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_i_parenthesis] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_i_angle] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_curly] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_parenthesis] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_square] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_angle] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_bar] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_slash] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_heredoc_double] = true, + [ts_external_token__newline_before_binary_operator] = 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__quoted_content_heredoc_single] = true, + [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, [25] = { - [ts_external_token__quoted_content_heredoc_single] = true, - [ts_external_token__newline_before_binary_op] = true, + [ts_external_token__quoted_content_single] = true, + [ts_external_token__newline_before_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, [26] = { - [ts_external_token__quoted_content_slash] = true, - [ts_external_token__newline_before_binary_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_binary_operator] = true, [ts_external_token__newline_before_comment] = true, }, }; @@ -22176,7 +22896,7 @@ static const bool ts_external_scanner_states[35][EXTERNAL_TOKEN_COUNT] = { static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { [ts_builtin_sym_end] = ACTIONS(1), - [anon_sym_LF] = ACTIONS(3), + [aux_sym__terminator_token1] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), @@ -22188,33 +22908,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_char] = ACTIONS(1), + [anon_sym_true] = ACTIONS(1), + [anon_sym_false] = ACTIONS(1), + [anon_sym_nil] = ACTIONS(1), + [sym_atom] = 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_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_SLASH] = 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_COMMA] = ACTIONS(1), + [sym_keyword] = ACTIONS(1), + [aux_sym_quoted_keyword_token1] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_PERCENT] = 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_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1), + [anon_sym_not] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_LT_DASH] = ACTIONS(1), [anon_sym_BSLASH_BSLASH] = ACTIONS(1), + [anon_sym_when] = ACTIONS(1), + [anon_sym_COLON_COLON] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), [anon_sym_PIPE_PIPE] = ACTIONS(1), [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), [anon_sym_AMP_AMP_AMP] = ACTIONS(1), + [anon_sym_and] = 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), @@ -22226,45 +22973,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE_GT] = ACTIONS(1), [anon_sym_LT_TILDE_GT] = ACTIONS(1), [anon_sym_LT_PIPE_GT] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_CARET_CARET_CARET] = ACTIONS(1), + [anon_sym_SLASH_SLASH] = 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_STAR_STAR] = 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_DASH_GT] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), [anon_sym_after] = ACTIONS(1), [anon_sym_catch] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), @@ -22272,9 +22994,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22298,57 +23017,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), [sym__before_unary_op] = ACTIONS(1), [sym__not_in] = ACTIONS(1), + [sym__quoted_atom_start] = ACTIONS(1), }, [1] = { - [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), + [sym_source] = STATE(4879), + [sym__terminator] = STATE(391), + [sym__expression] = STATE(2460), + [sym_block] = STATE(2460), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(2460), + [sym_nil] = STATE(2460), + [sym__atom] = STATE(2460), + [sym_quoted_atom] = STATE(2460), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(2460), + [sym_charlist] = STATE(2460), + [sym_sigil] = STATE(2460), + [sym_list] = STATE(2460), + [sym_tuple] = STATE(2460), + [sym_bitstring] = STATE(2460), + [sym_map] = STATE(2460), + [sym_unary_operator] = STATE(2460), + [sym_binary_operator] = STATE(2460), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(2460), + [sym_call] = STATE(2460), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(2460), + [sym_anonymous_function] = STATE(2460), + [aux_sym__terminator_repeat1] = STATE(1028), [ts_builtin_sym_end] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(9), + [aux_sym__terminator_token1] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_LPAREN] = ACTIONS(13), [aux_sym_identifier_token1] = ACTIONS(15), @@ -22359,174018 +23078,133632 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___ENV__] = ACTIONS(19), [anon_sym___CALLER__] = ACTIONS(19), [anon_sym___STACKTRACE__] = ACTIONS(19), - [sym__alias_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), + [sym_alias] = ACTIONS(21), + [sym_integer] = ACTIONS(21), + [sym_float] = ACTIONS(21), + [sym_char] = ACTIONS(21), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(21), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), [anon_sym_fn] = ACTIONS(53), - [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_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(59), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), }, [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__terminator] = STATE(26), + [sym__expression] = STATE(1069), + [sym_block] = STATE(1069), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1069), + [sym_nil] = STATE(1069), + [sym__atom] = STATE(1069), + [sym_quoted_atom] = STATE(1069), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1069), + [sym_charlist] = STATE(1069), + [sym_sigil] = STATE(1069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1069), + [sym_tuple] = STATE(1069), + [sym_bitstring] = STATE(1069), + [sym_map] = STATE(1069), + [sym_unary_operator] = STATE(1069), + [sym_binary_operator] = STATE(1069), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1069), + [sym_call] = STATE(1069), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3560), + [sym_rescue_block] = STATE(3560), + [sym_catch_block] = STATE(3560), + [sym_else_block] = STATE(3560), + [sym_access_call] = STATE(1069), + [sym_stab_clause] = STATE(3477), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1069), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3560), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(73), + [sym_integer] = ACTIONS(73), + [sym_float] = ACTIONS(73), + [sym_char] = ACTIONS(73), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(73), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(113), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__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_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, [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__expression] = STATE(1076), + [sym_block] = STATE(1076), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1076), + [sym_nil] = STATE(1076), + [sym__atom] = STATE(1076), + [sym_quoted_atom] = STATE(1076), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1076), + [sym_charlist] = STATE(1076), + [sym_sigil] = STATE(1076), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1076), + [sym_tuple] = STATE(1076), + [sym_bitstring] = STATE(1076), + [sym_map] = STATE(1076), + [sym_unary_operator] = STATE(1076), + [sym_binary_operator] = STATE(1076), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1076), + [sym_call] = STATE(1076), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3521), + [sym_rescue_block] = STATE(3521), + [sym_catch_block] = STATE(3521), + [sym_else_block] = STATE(3521), + [sym_access_call] = STATE(1076), + [sym_stab_clause] = STATE(3458), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1076), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3521), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(123), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(125), + [sym_integer] = ACTIONS(125), + [sym_float] = ACTIONS(125), + [sym_char] = ACTIONS(125), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(125), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(127), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [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_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, [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__terminator] = STATE(28), + [sym__expression] = STATE(1062), + [sym_block] = STATE(1062), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1062), + [sym_nil] = STATE(1062), + [sym__atom] = STATE(1062), + [sym_quoted_atom] = STATE(1062), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1062), + [sym_charlist] = STATE(1062), + [sym_sigil] = STATE(1062), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1062), + [sym_tuple] = STATE(1062), + [sym_bitstring] = STATE(1062), + [sym_map] = STATE(1062), + [sym_unary_operator] = STATE(1062), + [sym_binary_operator] = STATE(1062), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1062), + [sym_call] = STATE(1062), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3555), + [sym_rescue_block] = STATE(3555), + [sym_catch_block] = STATE(3555), + [sym_else_block] = STATE(3555), + [sym_access_call] = STATE(1062), + [sym_stab_clause] = STATE(3490), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1062), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3555), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(131), + [sym_integer] = ACTIONS(131), + [sym_float] = ACTIONS(131), + [sym_char] = ACTIONS(131), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(131), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(133), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__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_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, [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__terminator] = STATE(30), + [sym__expression] = STATE(1077), + [sym_block] = STATE(1077), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1077), + [sym_nil] = STATE(1077), + [sym__atom] = STATE(1077), + [sym_quoted_atom] = STATE(1077), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1077), + [sym_charlist] = STATE(1077), + [sym_sigil] = STATE(1077), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1077), + [sym_tuple] = STATE(1077), + [sym_bitstring] = STATE(1077), + [sym_map] = STATE(1077), + [sym_unary_operator] = STATE(1077), + [sym_binary_operator] = STATE(1077), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1077), + [sym_call] = STATE(1077), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3519), + [sym_rescue_block] = STATE(3519), + [sym_catch_block] = STATE(3519), + [sym_else_block] = STATE(3519), + [sym_access_call] = STATE(1077), + [sym_stab_clause] = STATE(3431), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1077), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3519), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(137), + [sym_integer] = ACTIONS(137), + [sym_float] = ACTIONS(137), + [sym_char] = ACTIONS(137), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(137), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(139), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__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_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, [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), + [sym__terminator] = STATE(20), + [sym__expression] = STATE(1066), + [sym_block] = STATE(1066), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1066), + [sym_nil] = STATE(1066), + [sym__atom] = STATE(1066), + [sym_quoted_atom] = STATE(1066), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1066), + [sym_charlist] = STATE(1066), + [sym_sigil] = STATE(1066), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1066), + [sym_tuple] = STATE(1066), + [sym_bitstring] = STATE(1066), + [sym_map] = STATE(1066), + [sym_unary_operator] = STATE(1066), + [sym_binary_operator] = STATE(1066), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1066), + [sym_call] = STATE(1066), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3515), + [sym_rescue_block] = STATE(3515), + [sym_catch_block] = STATE(3515), + [sym_else_block] = STATE(3515), + [sym_access_call] = STATE(1066), + [sym_stab_clause] = STATE(3447), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1066), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3515), + [aux_sym__terminator_token1] = ACTIONS(61), [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), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(143), [sym_integer] = ACTIONS(143), [sym_float] = ACTIONS(143), - [sym__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), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(143), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(145), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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] = { + [7] = { [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), + [sym__expression] = STATE(1063), + [sym_block] = STATE(1063), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1063), + [sym_nil] = STATE(1063), + [sym__atom] = STATE(1063), + [sym_quoted_atom] = STATE(1063), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1063), + [sym_charlist] = STATE(1063), + [sym_sigil] = STATE(1063), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1063), + [sym_tuple] = STATE(1063), + [sym_bitstring] = STATE(1063), + [sym_map] = STATE(1063), + [sym_unary_operator] = STATE(1063), + [sym_binary_operator] = STATE(1063), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1063), + [sym_call] = STATE(1063), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3557), + [sym_rescue_block] = STATE(3557), + [sym_catch_block] = STATE(3557), + [sym_else_block] = STATE(3557), + [sym_access_call] = STATE(1063), + [sym_stab_clause] = STATE(3485), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1063), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3557), + [aux_sym__terminator_token1] = ACTIONS(61), [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), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(149), [sym_integer] = ACTIONS(149), [sym_float] = ACTIONS(149), - [sym__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), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(149), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(151), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [8] = { + [sym__terminator] = STATE(33), + [sym__expression] = STATE(1058), + [sym_block] = STATE(1058), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1058), + [sym_nil] = STATE(1058), + [sym__atom] = STATE(1058), + [sym_quoted_atom] = STATE(1058), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1058), + [sym_charlist] = STATE(1058), + [sym_sigil] = STATE(1058), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1058), + [sym_tuple] = STATE(1058), + [sym_bitstring] = STATE(1058), + [sym_map] = STATE(1058), + [sym_unary_operator] = STATE(1058), + [sym_binary_operator] = STATE(1058), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1058), + [sym_call] = STATE(1058), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3510), + [sym_rescue_block] = STATE(3510), + [sym_catch_block] = STATE(3510), + [sym_else_block] = STATE(3510), + [sym_access_call] = STATE(1058), + [sym_stab_clause] = STATE(3434), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1058), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3510), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(155), + [sym_integer] = ACTIONS(155), + [sym_float] = ACTIONS(155), + [sym_char] = ACTIONS(155), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(155), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(157), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [9] = { + [sym__terminator] = STATE(23), + [sym__expression] = STATE(1075), + [sym_block] = STATE(1075), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1075), + [sym_nil] = STATE(1075), + [sym__atom] = STATE(1075), + [sym_quoted_atom] = STATE(1075), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1075), + [sym_charlist] = STATE(1075), + [sym_sigil] = STATE(1075), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1075), + [sym_tuple] = STATE(1075), + [sym_bitstring] = STATE(1075), + [sym_map] = STATE(1075), + [sym_unary_operator] = STATE(1075), + [sym_binary_operator] = STATE(1075), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1075), + [sym_call] = STATE(1075), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3514), + [sym_rescue_block] = STATE(3514), + [sym_catch_block] = STATE(3514), + [sym_else_block] = STATE(3514), + [sym_access_call] = STATE(1075), + [sym_stab_clause] = STATE(3444), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1075), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3514), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(161), + [sym_integer] = ACTIONS(161), + [sym_float] = ACTIONS(161), + [sym_char] = ACTIONS(161), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(161), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(163), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [10] = { + [sym__terminator] = STATE(24), + [sym__expression] = STATE(1060), + [sym_block] = STATE(1060), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1060), + [sym_nil] = STATE(1060), + [sym__atom] = STATE(1060), + [sym_quoted_atom] = STATE(1060), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1060), + [sym_charlist] = STATE(1060), + [sym_sigil] = STATE(1060), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1060), + [sym_tuple] = STATE(1060), + [sym_bitstring] = STATE(1060), + [sym_map] = STATE(1060), + [sym_unary_operator] = STATE(1060), + [sym_binary_operator] = STATE(1060), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1060), + [sym_call] = STATE(1060), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3559), + [sym_rescue_block] = STATE(3559), + [sym_catch_block] = STATE(3559), + [sym_else_block] = STATE(3559), + [sym_access_call] = STATE(1060), + [sym_stab_clause] = STATE(3451), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1060), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3559), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(167), + [sym_integer] = ACTIONS(167), + [sym_float] = ACTIONS(167), + [sym_char] = ACTIONS(167), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(167), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(169), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [11] = { + [sym__terminator] = STATE(32), + [sym__expression] = STATE(1081), + [sym_block] = STATE(1081), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1081), + [sym_nil] = STATE(1081), + [sym__atom] = STATE(1081), + [sym_quoted_atom] = STATE(1081), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1081), + [sym_charlist] = STATE(1081), + [sym_sigil] = STATE(1081), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1081), + [sym_tuple] = STATE(1081), + [sym_bitstring] = STATE(1081), + [sym_map] = STATE(1081), + [sym_unary_operator] = STATE(1081), + [sym_binary_operator] = STATE(1081), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1081), + [sym_call] = STATE(1081), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3522), + [sym_rescue_block] = STATE(3522), + [sym_catch_block] = STATE(3522), + [sym_else_block] = STATE(3522), + [sym_access_call] = STATE(1081), + [sym_stab_clause] = STATE(3453), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1081), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3522), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(173), + [sym_integer] = ACTIONS(173), + [sym_float] = ACTIONS(173), + [sym_char] = ACTIONS(173), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(173), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(175), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [12] = { + [sym__terminator] = STATE(22), + [sym__expression] = STATE(1065), + [sym_block] = STATE(1065), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1065), + [sym_nil] = STATE(1065), + [sym__atom] = STATE(1065), + [sym_quoted_atom] = STATE(1065), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1065), + [sym_charlist] = STATE(1065), + [sym_sigil] = STATE(1065), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1065), + [sym_tuple] = STATE(1065), + [sym_bitstring] = STATE(1065), + [sym_map] = STATE(1065), + [sym_unary_operator] = STATE(1065), + [sym_binary_operator] = STATE(1065), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1065), + [sym_call] = STATE(1065), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3562), + [sym_rescue_block] = STATE(3562), + [sym_catch_block] = STATE(3562), + [sym_else_block] = STATE(3562), + [sym_access_call] = STATE(1065), + [sym_stab_clause] = STATE(3483), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1065), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3562), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(179), + [sym_integer] = ACTIONS(179), + [sym_float] = ACTIONS(179), + [sym_char] = ACTIONS(179), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(179), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(181), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [13] = { + [sym__terminator] = STATE(21), + [sym__expression] = STATE(1078), + [sym_block] = STATE(1078), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1078), + [sym_nil] = STATE(1078), + [sym__atom] = STATE(1078), + [sym_quoted_atom] = STATE(1078), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1078), + [sym_charlist] = STATE(1078), + [sym_sigil] = STATE(1078), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1078), + [sym_tuple] = STATE(1078), + [sym_bitstring] = STATE(1078), + [sym_map] = STATE(1078), + [sym_unary_operator] = STATE(1078), + [sym_binary_operator] = STATE(1078), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1078), + [sym_call] = STATE(1078), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3546), + [sym_rescue_block] = STATE(3546), + [sym_catch_block] = STATE(3546), + [sym_else_block] = STATE(3546), + [sym_access_call] = STATE(1078), + [sym_stab_clause] = STATE(3501), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1078), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym_do_block_repeat1] = STATE(3546), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(185), + [sym_integer] = ACTIONS(185), + [sym_float] = ACTIONS(185), + [sym_char] = ACTIONS(185), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(185), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(187), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [14] = { + [sym__expression] = STATE(1200), + [sym_block] = STATE(1200), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1200), + [sym_nil] = STATE(1200), + [sym__atom] = STATE(1200), + [sym_quoted_atom] = STATE(1200), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1200), + [sym_charlist] = STATE(1200), + [sym_sigil] = STATE(1200), + [sym_keywords] = STATE(1255), + [sym_pair] = STATE(1238), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1200), + [sym_tuple] = STATE(1200), + [sym_bitstring] = STATE(1200), + [sym_map] = STATE(1200), + [sym_unary_operator] = STATE(1200), + [sym_binary_operator] = STATE(1200), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1200), + [sym_call] = STATE(1200), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym__call_arguments_with_parentheses_immediate] = STATE(1084), + [sym__call_arguments_without_parentheses] = STATE(1112), + [sym_do_block] = STATE(1481), + [sym_access_call] = STATE(1200), + [sym_anonymous_function] = STATE(1200), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(201), + [sym_integer] = ACTIONS(201), + [sym_float] = ACTIONS(201), + [sym_char] = ACTIONS(201), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_after] = ACTIONS(191), + [anon_sym_catch] = ACTIONS(191), + [anon_sym_do] = ACTIONS(233), + [anon_sym_else] = ACTIONS(191), + [anon_sym_end] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_rescue] = ACTIONS(191), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_do] = ACTIONS(239), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(243), }, - [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] = { + [15] = { [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__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1377), + [sym_nil] = STATE(1377), + [sym__atom] = STATE(1377), + [sym_quoted_atom] = STATE(1377), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), [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_keywords] = STATE(1285), + [sym_pair] = STATE(1394), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), [sym_list] = STATE(1377), [sym_tuple] = STATE(1377), [sym_bitstring] = STATE(1377), [sym_map] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_binary_operator] = STATE(1377), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1377), + [sym_call] = STATE(1377), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1094), + [sym__call_arguments_without_parentheses] = STATE(1156), + [sym_do_block] = STATE(1378), + [sym_access_call] = STATE(1377), + [sym_anonymous_function] = STATE(1377), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(253), + [sym_integer] = ACTIONS(253), + [sym_float] = ACTIONS(253), + [sym_char] = ACTIONS(253), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_after] = ACTIONS(247), + [anon_sym_catch] = ACTIONS(247), + [anon_sym_do] = ACTIONS(247), + [anon_sym_else] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_rescue] = ACTIONS(247), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [16] = { + [sym__expression] = STATE(1377), + [sym_block] = STATE(1377), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), [sym_boolean] = STATE(1377), [sym_nil] = STATE(1377), + [sym__atom] = STATE(1377), + [sym_quoted_atom] = STATE(1377), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1377), + [sym_charlist] = STATE(1377), + [sym_sigil] = STATE(1377), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(1394), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_bitstring] = STATE(1377), + [sym_map] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_binary_operator] = STATE(1377), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = 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__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1095), + [sym__call_arguments_without_parentheses] = STATE(1169), + [sym_do_block] = STATE(1374), [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), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(253), + [sym_integer] = ACTIONS(253), + [sym_float] = ACTIONS(253), + [sym_char] = ACTIONS(253), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_after] = ACTIONS(191), + [anon_sym_catch] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_else] = ACTIONS(191), + [anon_sym_end] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_rescue] = ACTIONS(191), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), }, - [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), + [17] = { + [sym__expression] = STATE(1377), + [sym_block] = STATE(1377), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1377), + [sym_nil] = STATE(1377), + [sym__atom] = STATE(1377), + [sym_quoted_atom] = STATE(1377), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1377), + [sym_charlist] = STATE(1377), + [sym_sigil] = STATE(1377), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(1394), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_bitstring] = STATE(1377), + [sym_map] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_binary_operator] = STATE(1377), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1377), + [sym_call] = STATE(1377), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1088), + [sym__call_arguments_without_parentheses] = STATE(1203), + [sym_do_block] = STATE(1686), + [sym_access_call] = STATE(1377), + [sym_anonymous_function] = STATE(1377), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(253), + [sym_integer] = ACTIONS(253), + [sym_float] = ACTIONS(253), + [sym_char] = ACTIONS(253), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_after] = ACTIONS(191), + [anon_sym_catch] = ACTIONS(191), + [anon_sym_do] = ACTIONS(302), + [anon_sym_else] = ACTIONS(191), + [anon_sym_end] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_rescue] = ACTIONS(191), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_do] = ACTIONS(304), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), }, - [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), + [18] = { + [sym__expression] = STATE(1200), + [sym_block] = STATE(1200), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1200), + [sym_nil] = STATE(1200), + [sym__atom] = STATE(1200), + [sym_quoted_atom] = STATE(1200), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1200), + [sym_charlist] = STATE(1200), + [sym_sigil] = STATE(1200), + [sym_keywords] = STATE(1255), + [sym_pair] = STATE(1238), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1200), + [sym_tuple] = STATE(1200), + [sym_bitstring] = STATE(1200), + [sym_map] = STATE(1200), + [sym_unary_operator] = STATE(1200), + [sym_binary_operator] = STATE(1200), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1200), + [sym_call] = STATE(1200), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym__call_arguments_with_parentheses_immediate] = STATE(1086), + [sym__call_arguments_without_parentheses] = STATE(1119), + [sym_do_block] = STATE(1148), + [sym_access_call] = STATE(1200), + [sym_anonymous_function] = STATE(1200), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(201), + [sym_integer] = ACTIONS(201), + [sym_float] = ACTIONS(201), + [sym_char] = ACTIONS(201), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_after] = ACTIONS(191), + [anon_sym_catch] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_else] = ACTIONS(191), + [anon_sym_end] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_rescue] = ACTIONS(191), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(243), }, - [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), + [19] = { + [sym__expression] = STATE(1200), + [sym_block] = STATE(1200), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1200), + [sym_nil] = STATE(1200), + [sym__atom] = STATE(1200), + [sym_quoted_atom] = STATE(1200), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1200), + [sym_charlist] = STATE(1200), + [sym_sigil] = STATE(1200), + [sym_keywords] = STATE(1255), + [sym_pair] = STATE(1238), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1200), + [sym_tuple] = STATE(1200), + [sym_bitstring] = STATE(1200), + [sym_map] = STATE(1200), + [sym_unary_operator] = STATE(1200), + [sym_binary_operator] = STATE(1200), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1200), + [sym_call] = STATE(1200), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym__call_arguments_with_parentheses_immediate] = STATE(1083), + [sym__call_arguments_without_parentheses] = STATE(1111), + [sym_do_block] = STATE(1247), + [sym_access_call] = STATE(1200), + [sym_anonymous_function] = STATE(1200), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(201), + [sym_integer] = ACTIONS(201), + [sym_float] = ACTIONS(201), + [sym_char] = ACTIONS(201), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(306), + [anon_sym_DASH] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_after] = ACTIONS(247), + [anon_sym_catch] = ACTIONS(247), + [anon_sym_do] = ACTIONS(247), + [anon_sym_else] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_rescue] = ACTIONS(247), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(243), }, - [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), + [20] = { + [sym__expression] = STATE(1061), + [sym_block] = STATE(1061), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1061), + [sym_nil] = STATE(1061), + [sym__atom] = STATE(1061), + [sym_quoted_atom] = STATE(1061), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1061), + [sym_charlist] = STATE(1061), + [sym_sigil] = STATE(1061), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1061), + [sym_tuple] = STATE(1061), + [sym_bitstring] = STATE(1061), + [sym_map] = STATE(1061), + [sym_unary_operator] = STATE(1061), + [sym_binary_operator] = STATE(1061), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1061), + [sym_call] = STATE(1061), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3513), + [sym_rescue_block] = STATE(3513), + [sym_catch_block] = STATE(3513), + [sym_else_block] = STATE(3513), + [sym_access_call] = STATE(1061), + [sym_stab_clause] = STATE(3442), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1061), + [aux_sym_do_block_repeat1] = STATE(3513), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(309), + [sym_integer] = ACTIONS(309), + [sym_float] = ACTIONS(309), + [sym_char] = ACTIONS(309), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(309), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(311), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [21] = { + [sym__expression] = STATE(1059), + [sym_block] = STATE(1059), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1059), + [sym_nil] = STATE(1059), + [sym__atom] = STATE(1059), + [sym_quoted_atom] = STATE(1059), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1059), + [sym_charlist] = STATE(1059), + [sym_sigil] = STATE(1059), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1059), + [sym_tuple] = STATE(1059), + [sym_bitstring] = STATE(1059), + [sym_map] = STATE(1059), + [sym_unary_operator] = STATE(1059), + [sym_binary_operator] = STATE(1059), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1059), + [sym_call] = STATE(1059), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3547), + [sym_rescue_block] = STATE(3547), + [sym_catch_block] = STATE(3547), + [sym_else_block] = STATE(3547), + [sym_access_call] = STATE(1059), + [sym_stab_clause] = STATE(3496), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1059), + [aux_sym_do_block_repeat1] = STATE(3547), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(313), + [sym_integer] = ACTIONS(313), + [sym_float] = ACTIONS(313), + [sym_char] = ACTIONS(313), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(315), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [22] = { + [sym__expression] = STATE(1064), + [sym_block] = STATE(1064), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1064), + [sym_nil] = STATE(1064), + [sym__atom] = STATE(1064), + [sym_quoted_atom] = STATE(1064), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1064), + [sym_charlist] = STATE(1064), + [sym_sigil] = STATE(1064), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1064), + [sym_tuple] = STATE(1064), + [sym_bitstring] = STATE(1064), + [sym_map] = STATE(1064), + [sym_unary_operator] = STATE(1064), + [sym_binary_operator] = STATE(1064), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1064), + [sym_call] = STATE(1064), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3551), + [sym_rescue_block] = STATE(3551), + [sym_catch_block] = STATE(3551), + [sym_else_block] = STATE(3551), + [sym_access_call] = STATE(1064), + [sym_stab_clause] = STATE(3489), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1064), + [aux_sym_do_block_repeat1] = STATE(3551), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(317), + [sym_integer] = ACTIONS(317), + [sym_float] = ACTIONS(317), + [sym_char] = ACTIONS(317), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(317), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(319), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [23] = { + [sym__expression] = STATE(1074), + [sym_block] = STATE(1074), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1074), + [sym_nil] = STATE(1074), + [sym__atom] = STATE(1074), + [sym_quoted_atom] = STATE(1074), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1074), + [sym_charlist] = STATE(1074), + [sym_sigil] = STATE(1074), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1074), + [sym_tuple] = STATE(1074), + [sym_bitstring] = STATE(1074), + [sym_map] = STATE(1074), + [sym_unary_operator] = STATE(1074), + [sym_binary_operator] = STATE(1074), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1074), + [sym_call] = STATE(1074), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3553), + [sym_rescue_block] = STATE(3553), + [sym_catch_block] = STATE(3553), + [sym_else_block] = STATE(3553), + [sym_access_call] = STATE(1074), + [sym_stab_clause] = STATE(3475), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1074), + [aux_sym_do_block_repeat1] = STATE(3553), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(321), + [sym_integer] = ACTIONS(321), + [sym_float] = ACTIONS(321), + [sym_char] = ACTIONS(321), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(321), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(323), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [24] = { + [sym__expression] = STATE(1070), + [sym_block] = STATE(1070), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1070), + [sym_nil] = STATE(1070), + [sym__atom] = STATE(1070), + [sym_quoted_atom] = STATE(1070), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1070), + [sym_charlist] = STATE(1070), + [sym_sigil] = STATE(1070), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1070), + [sym_tuple] = STATE(1070), + [sym_bitstring] = STATE(1070), + [sym_map] = STATE(1070), + [sym_unary_operator] = STATE(1070), + [sym_binary_operator] = STATE(1070), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1070), + [sym_call] = STATE(1070), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3518), + [sym_rescue_block] = STATE(3518), + [sym_catch_block] = STATE(3518), + [sym_else_block] = STATE(3518), + [sym_access_call] = STATE(1070), + [sym_stab_clause] = STATE(3469), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1070), + [aux_sym_do_block_repeat1] = STATE(3518), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(325), + [sym_integer] = ACTIONS(325), + [sym_float] = ACTIONS(325), + [sym_char] = ACTIONS(325), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(325), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(327), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__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_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [25] = { + [sym__expression] = STATE(1377), + [sym_block] = STATE(1377), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1377), + [sym_nil] = STATE(1377), + [sym__atom] = STATE(1377), + [sym_quoted_atom] = STATE(1377), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1377), + [sym_charlist] = STATE(1377), + [sym_sigil] = STATE(1377), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(1394), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(1377), + [sym_tuple] = STATE(1377), + [sym_bitstring] = STATE(1377), + [sym_map] = STATE(1377), + [sym_unary_operator] = STATE(1377), + [sym_binary_operator] = STATE(1377), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1377), + [sym_call] = STATE(1377), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1125), + [sym__call_arguments_without_parentheses] = STATE(1208), + [sym_do_block] = STATE(1687), + [sym_access_call] = STATE(1377), + [sym_anonymous_function] = STATE(1377), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(253), + [sym_integer] = ACTIONS(253), + [sym_float] = ACTIONS(253), + [sym_char] = ACTIONS(253), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(284), + [anon_sym_DASH] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_after] = ACTIONS(247), + [anon_sym_catch] = ACTIONS(247), + [anon_sym_do] = ACTIONS(302), + [anon_sym_else] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_rescue] = ACTIONS(247), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__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_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), }, - [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), + [26] = { + [sym__expression] = STATE(1068), + [sym_block] = STATE(1068), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1068), + [sym_nil] = STATE(1068), + [sym__atom] = STATE(1068), + [sym_quoted_atom] = STATE(1068), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1068), + [sym_charlist] = STATE(1068), + [sym_sigil] = STATE(1068), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1068), + [sym_tuple] = STATE(1068), + [sym_bitstring] = STATE(1068), + [sym_map] = STATE(1068), + [sym_unary_operator] = STATE(1068), + [sym_binary_operator] = STATE(1068), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1068), + [sym_call] = STATE(1068), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3558), + [sym_rescue_block] = STATE(3558), + [sym_catch_block] = STATE(3558), + [sym_else_block] = STATE(3558), + [sym_access_call] = STATE(1068), + [sym_stab_clause] = STATE(3476), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1068), + [aux_sym_do_block_repeat1] = STATE(3558), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(329), [sym_integer] = ACTIONS(329), [sym_float] = ACTIONS(329), - [sym__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), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(331), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [27] = { + [sym__expression] = STATE(1079), + [sym_block] = STATE(1079), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1079), + [sym_nil] = STATE(1079), + [sym__atom] = STATE(1079), + [sym_quoted_atom] = STATE(1079), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1079), + [sym_charlist] = STATE(1079), + [sym_sigil] = STATE(1079), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1079), + [sym_tuple] = STATE(1079), + [sym_bitstring] = STATE(1079), + [sym_map] = STATE(1079), + [sym_unary_operator] = STATE(1079), + [sym_binary_operator] = STATE(1079), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1079), + [sym_call] = STATE(1079), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3511), + [sym_rescue_block] = STATE(3511), + [sym_catch_block] = STATE(3511), + [sym_else_block] = STATE(3511), + [sym_access_call] = STATE(1079), + [sym_stab_clause] = STATE(3443), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1079), + [aux_sym_do_block_repeat1] = STATE(3511), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(333), + [sym_integer] = ACTIONS(333), + [sym_float] = ACTIONS(333), + [sym_char] = ACTIONS(333), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(333), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(335), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [28] = { + [sym__expression] = STATE(1072), + [sym_block] = STATE(1072), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1072), + [sym_nil] = STATE(1072), + [sym__atom] = STATE(1072), + [sym_quoted_atom] = STATE(1072), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1072), + [sym_charlist] = STATE(1072), + [sym_sigil] = STATE(1072), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1072), + [sym_tuple] = STATE(1072), + [sym_bitstring] = STATE(1072), + [sym_map] = STATE(1072), + [sym_unary_operator] = STATE(1072), + [sym_binary_operator] = STATE(1072), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1072), + [sym_call] = STATE(1072), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3549), + [sym_rescue_block] = STATE(3549), + [sym_catch_block] = STATE(3549), + [sym_else_block] = STATE(3549), + [sym_access_call] = STATE(1072), + [sym_stab_clause] = STATE(3480), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1072), + [aux_sym_do_block_repeat1] = STATE(3549), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(337), + [sym_integer] = ACTIONS(337), + [sym_float] = ACTIONS(337), + [sym_char] = ACTIONS(337), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(337), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(339), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [29] = { + [sym__expression] = STATE(1080), + [sym_block] = STATE(1080), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1080), + [sym_nil] = STATE(1080), + [sym__atom] = STATE(1080), + [sym_quoted_atom] = STATE(1080), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1080), + [sym_charlist] = STATE(1080), + [sym_sigil] = STATE(1080), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1080), + [sym_tuple] = STATE(1080), + [sym_bitstring] = STATE(1080), + [sym_map] = STATE(1080), + [sym_unary_operator] = STATE(1080), + [sym_binary_operator] = STATE(1080), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1080), + [sym_call] = STATE(1080), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3540), + [sym_rescue_block] = STATE(3540), + [sym_catch_block] = STATE(3540), + [sym_else_block] = STATE(3540), + [sym_access_call] = STATE(1080), + [sym_stab_clause] = STATE(3468), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1080), + [aux_sym_do_block_repeat1] = STATE(3540), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(341), + [sym_integer] = ACTIONS(341), + [sym_float] = ACTIONS(341), + [sym_char] = ACTIONS(341), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(341), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(343), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [30] = { + [sym__expression] = STATE(1073), + [sym_block] = STATE(1073), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1073), + [sym_nil] = STATE(1073), + [sym__atom] = STATE(1073), + [sym_quoted_atom] = STATE(1073), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1073), + [sym_charlist] = STATE(1073), + [sym_sigil] = STATE(1073), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1073), + [sym_tuple] = STATE(1073), + [sym_bitstring] = STATE(1073), + [sym_map] = STATE(1073), + [sym_unary_operator] = STATE(1073), + [sym_binary_operator] = STATE(1073), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1073), + [sym_call] = STATE(1073), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3517), + [sym_rescue_block] = STATE(3517), + [sym_catch_block] = STATE(3517), + [sym_else_block] = STATE(3517), + [sym_access_call] = STATE(1073), + [sym_stab_clause] = STATE(3450), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1073), + [aux_sym_do_block_repeat1] = STATE(3517), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(345), + [sym_integer] = ACTIONS(345), + [sym_float] = ACTIONS(345), + [sym_char] = ACTIONS(345), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(347), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [31] = { + [sym__expression] = STATE(1200), + [sym_block] = STATE(1200), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1200), + [sym_nil] = STATE(1200), + [sym__atom] = STATE(1200), + [sym_quoted_atom] = STATE(1200), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1200), + [sym_charlist] = STATE(1200), + [sym_sigil] = STATE(1200), + [sym_keywords] = STATE(1255), + [sym_pair] = STATE(1238), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1200), + [sym_tuple] = STATE(1200), + [sym_bitstring] = STATE(1200), + [sym_map] = STATE(1200), + [sym_unary_operator] = STATE(1200), + [sym_binary_operator] = STATE(1200), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1200), + [sym_call] = STATE(1200), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym__call_arguments_with_parentheses_immediate] = STATE(1085), + [sym__call_arguments_without_parentheses] = STATE(1107), + [sym_do_block] = STATE(1480), + [sym_access_call] = STATE(1200), + [sym_anonymous_function] = STATE(1200), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(201), + [sym_integer] = ACTIONS(201), + [sym_float] = ACTIONS(201), + [sym_char] = ACTIONS(201), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(306), + [anon_sym_DASH] = ACTIONS(306), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_after] = ACTIONS(247), + [anon_sym_catch] = ACTIONS(247), + [anon_sym_do] = ACTIONS(233), + [anon_sym_else] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_rescue] = ACTIONS(247), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [32] = { + [sym__expression] = STATE(1071), + [sym_block] = STATE(1071), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1071), + [sym_nil] = STATE(1071), + [sym__atom] = STATE(1071), + [sym_quoted_atom] = STATE(1071), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1071), + [sym_charlist] = STATE(1071), + [sym_sigil] = STATE(1071), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1071), + [sym_tuple] = STATE(1071), + [sym_bitstring] = STATE(1071), + [sym_map] = STATE(1071), + [sym_unary_operator] = STATE(1071), + [sym_binary_operator] = STATE(1071), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1071), + [sym_call] = STATE(1071), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3565), + [sym_rescue_block] = STATE(3565), + [sym_catch_block] = STATE(3565), + [sym_else_block] = STATE(3565), + [sym_access_call] = STATE(1071), + [sym_stab_clause] = STATE(3482), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1071), + [aux_sym_do_block_repeat1] = STATE(3565), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(349), + [sym_integer] = ACTIONS(349), + [sym_float] = ACTIONS(349), + [sym_char] = ACTIONS(349), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(349), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(351), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [33] = { + [sym__expression] = STATE(1067), + [sym_block] = STATE(1067), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1067), + [sym_nil] = STATE(1067), + [sym__atom] = STATE(1067), + [sym_quoted_atom] = STATE(1067), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1067), + [sym_charlist] = STATE(1067), + [sym_sigil] = STATE(1067), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1067), + [sym_tuple] = STATE(1067), + [sym_bitstring] = STATE(1067), + [sym_map] = STATE(1067), + [sym_unary_operator] = STATE(1067), + [sym_binary_operator] = STATE(1067), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1067), + [sym_call] = STATE(1067), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_after_block] = STATE(3516), + [sym_rescue_block] = STATE(3516), + [sym_catch_block] = STATE(3516), + [sym_else_block] = STATE(3516), + [sym_access_call] = STATE(1067), + [sym_stab_clause] = STATE(3445), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1067), + [aux_sym_do_block_repeat1] = STATE(3516), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(353), + [sym_integer] = ACTIONS(353), + [sym_float] = ACTIONS(353), + [sym_char] = ACTIONS(353), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(355), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [34] = { + [sym__expression] = STATE(1873), + [sym_block] = STATE(1873), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1873), + [sym_nil] = STATE(1873), + [sym__atom] = STATE(1873), + [sym_quoted_atom] = STATE(1873), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1873), + [sym_charlist] = STATE(1873), + [sym_sigil] = STATE(1873), + [sym_keywords] = STATE(1879), + [sym_pair] = STATE(1870), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1873), + [sym_tuple] = STATE(1873), + [sym_bitstring] = STATE(1873), + [sym_map] = STATE(1873), + [sym_unary_operator] = STATE(1873), + [sym_binary_operator] = STATE(1873), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1873), + [sym_call] = STATE(1873), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym__call_arguments_with_parentheses_immediate] = STATE(1417), + [sym__call_arguments_without_parentheses] = STATE(1732), + [sym_do_block] = STATE(1805), + [sym_access_call] = STATE(1873), + [sym_anonymous_function] = STATE(1873), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(365), + [sym_integer] = ACTIONS(365), + [sym_float] = ACTIONS(365), + [sym_char] = ACTIONS(365), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [35] = { + [sym__expression] = STATE(1873), + [sym_block] = STATE(1873), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1873), + [sym_nil] = STATE(1873), + [sym__atom] = STATE(1873), + [sym_quoted_atom] = STATE(1873), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1873), + [sym_charlist] = STATE(1873), + [sym_sigil] = STATE(1873), + [sym_keywords] = STATE(1879), + [sym_pair] = STATE(1870), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1873), + [sym_tuple] = STATE(1873), + [sym_bitstring] = STATE(1873), + [sym_map] = STATE(1873), + [sym_unary_operator] = STATE(1873), + [sym_binary_operator] = STATE(1873), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1873), + [sym_call] = STATE(1873), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym__call_arguments_with_parentheses_immediate] = STATE(1540), + [sym__call_arguments_without_parentheses] = STATE(1626), + [sym_do_block] = STATE(2333), + [sym_access_call] = STATE(1873), + [sym_anonymous_function] = STATE(1873), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(365), + [sym_integer] = ACTIONS(365), + [sym_float] = ACTIONS(365), + [sym_char] = ACTIONS(365), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(191), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(405), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(407), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [36] = { + [sym__expression] = STATE(1873), + [sym_block] = STATE(1873), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1873), + [sym_nil] = STATE(1873), + [sym__atom] = STATE(1873), + [sym_quoted_atom] = STATE(1873), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1873), + [sym_charlist] = STATE(1873), + [sym_sigil] = STATE(1873), + [sym_keywords] = STATE(1879), + [sym_pair] = STATE(1870), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1873), + [sym_tuple] = STATE(1873), + [sym_bitstring] = STATE(1873), + [sym_map] = STATE(1873), + [sym_unary_operator] = STATE(1873), + [sym_binary_operator] = STATE(1873), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1873), + [sym_call] = STATE(1873), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym__call_arguments_with_parentheses_immediate] = STATE(1418), + [sym__call_arguments_without_parentheses] = STATE(1735), + [sym_do_block] = STATE(1801), + [sym_access_call] = STATE(1873), + [sym_anonymous_function] = STATE(1873), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(365), + [sym_integer] = ACTIONS(365), + [sym_float] = ACTIONS(365), + [sym_char] = ACTIONS(365), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(247), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [37] = { + [sym__terminator] = STATE(70), + [sym__expression] = STATE(1097), + [sym_block] = STATE(1097), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1097), + [sym_nil] = STATE(1097), + [sym__atom] = STATE(1097), + [sym_quoted_atom] = STATE(1097), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1097), + [sym_charlist] = STATE(1097), + [sym_sigil] = STATE(1097), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1097), + [sym_tuple] = STATE(1097), + [sym_bitstring] = STATE(1097), + [sym_map] = STATE(1097), + [sym_unary_operator] = STATE(1097), + [sym_binary_operator] = STATE(1097), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1097), + [sym_call] = STATE(1097), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1097), + [sym_stab_clause] = STATE(3575), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1097), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(414), + [sym_integer] = ACTIONS(414), + [sym_float] = ACTIONS(414), + [sym_char] = ACTIONS(414), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(414), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(416), + [anon_sym_catch] = ACTIONS(416), + [anon_sym_else] = ACTIONS(416), + [anon_sym_end] = ACTIONS(416), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(416), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [38] = { + [sym__terminator] = STATE(66), + [sym__expression] = STATE(1089), + [sym_block] = STATE(1089), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1089), + [sym_nil] = STATE(1089), + [sym__atom] = STATE(1089), + [sym_quoted_atom] = STATE(1089), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1089), + [sym_charlist] = STATE(1089), + [sym_sigil] = STATE(1089), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1089), + [sym_tuple] = STATE(1089), + [sym_bitstring] = STATE(1089), + [sym_map] = STATE(1089), + [sym_unary_operator] = STATE(1089), + [sym_binary_operator] = STATE(1089), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1089), + [sym_call] = STATE(1089), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1089), + [sym_stab_clause] = STATE(3570), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1089), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(420), + [sym_integer] = ACTIONS(420), + [sym_float] = ACTIONS(420), + [sym_char] = ACTIONS(420), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(420), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(422), + [anon_sym_catch] = ACTIONS(422), + [anon_sym_else] = ACTIONS(422), + [anon_sym_end] = ACTIONS(422), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(422), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [39] = { + [sym__terminator] = STATE(64), + [sym__expression] = STATE(1092), + [sym_block] = STATE(1092), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1092), + [sym_nil] = STATE(1092), + [sym__atom] = STATE(1092), + [sym_quoted_atom] = STATE(1092), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1092), + [sym_charlist] = STATE(1092), + [sym_sigil] = STATE(1092), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1092), + [sym_tuple] = STATE(1092), + [sym_bitstring] = STATE(1092), + [sym_map] = STATE(1092), + [sym_unary_operator] = STATE(1092), + [sym_binary_operator] = STATE(1092), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1092), + [sym_call] = STATE(1092), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1092), + [sym_stab_clause] = STATE(3571), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1092), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(424), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(426), + [sym_integer] = ACTIONS(426), + [sym_float] = ACTIONS(426), + [sym_char] = ACTIONS(426), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(426), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(428), + [anon_sym_catch] = ACTIONS(428), + [anon_sym_else] = ACTIONS(428), + [anon_sym_end] = ACTIONS(428), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(428), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [40] = { + [sym__terminator] = STATE(69), + [sym__expression] = STATE(1098), + [sym_block] = STATE(1098), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1098), + [sym_nil] = STATE(1098), + [sym__atom] = STATE(1098), + [sym_quoted_atom] = STATE(1098), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1098), + [sym_charlist] = STATE(1098), + [sym_sigil] = STATE(1098), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1098), + [sym_tuple] = STATE(1098), + [sym_bitstring] = STATE(1098), + [sym_map] = STATE(1098), + [sym_unary_operator] = STATE(1098), + [sym_binary_operator] = STATE(1098), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1098), + [sym_call] = STATE(1098), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1098), + [sym_stab_clause] = STATE(3584), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1098), + [aux_sym__terminator_repeat1] = STATE(1018), + [aux_sym__terminator_token1] = ACTIONS(61), + [anon_sym_SEMI] = ACTIONS(430), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(432), + [sym_integer] = ACTIONS(432), + [sym_float] = ACTIONS(432), + [sym_char] = ACTIONS(432), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(432), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(434), + [anon_sym_catch] = ACTIONS(434), + [anon_sym_else] = ACTIONS(434), + [anon_sym_end] = ACTIONS(434), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(434), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [41] = { + [sym__expression] = STATE(2076), + [sym_block] = STATE(2076), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2076), + [sym_nil] = STATE(2076), + [sym__atom] = STATE(2076), + [sym_quoted_atom] = STATE(2076), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2076), + [sym_charlist] = STATE(2076), + [sym_sigil] = STATE(2076), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(1918), + [sym__keyword] = STATE(869), + [sym_quoted_keyword] = STATE(869), + [sym_list] = STATE(2076), + [sym_tuple] = STATE(2076), + [sym_bitstring] = STATE(2076), + [sym_map] = STATE(2076), + [sym_unary_operator] = STATE(2076), + [sym_binary_operator] = STATE(2076), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2076), + [sym_call] = STATE(2076), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1095), + [sym__call_arguments_without_parentheses] = STATE(1169), + [sym_do_block] = STATE(1374), + [sym_access_call] = STATE(2076), + [sym_anonymous_function] = STATE(2076), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(442), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(442), + [sym_char] = ACTIONS(442), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_end] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [42] = { + [sym__expression] = STATE(1862), + [sym_block] = STATE(1862), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(1862), + [sym_nil] = STATE(1862), + [sym__atom] = STATE(1862), + [sym_quoted_atom] = STATE(1862), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1862), + [sym_charlist] = STATE(1862), + [sym_sigil] = STATE(1862), + [sym_keywords] = STATE(1255), + [sym_pair] = STATE(1872), + [sym__keyword] = STATE(845), + [sym_quoted_keyword] = STATE(845), + [sym_list] = STATE(1862), + [sym_tuple] = STATE(1862), + [sym_bitstring] = STATE(1862), + [sym_map] = STATE(1862), + [sym_unary_operator] = STATE(1862), + [sym_binary_operator] = STATE(1862), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1862), + [sym_call] = STATE(1862), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym__call_arguments_with_parentheses_immediate] = STATE(1083), + [sym__call_arguments_without_parentheses] = STATE(1111), + [sym_do_block] = STATE(1247), + [sym_access_call] = STATE(1862), + [sym_anonymous_function] = STATE(1862), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(462), + [sym_integer] = ACTIONS(462), + [sym_float] = ACTIONS(462), + [sym_char] = ACTIONS(462), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [43] = { + [sym__expression] = STATE(2144), + [sym_block] = STATE(2144), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2144), + [sym_nil] = STATE(2144), + [sym__atom] = STATE(2144), + [sym_quoted_atom] = STATE(2144), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2144), + [sym_charlist] = STATE(2144), + [sym_sigil] = STATE(2144), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(2118), + [sym__keyword] = STATE(598), + [sym_quoted_keyword] = STATE(598), + [sym_list] = STATE(2144), + [sym_tuple] = STATE(2144), + [sym_bitstring] = STATE(2144), + [sym_map] = STATE(2144), + [sym_unary_operator] = STATE(2144), + [sym_binary_operator] = STATE(2144), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2144), + [sym_call] = STATE(2144), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1094), + [sym__call_arguments_without_parentheses] = STATE(1156), + [sym_do_block] = STATE(1378), + [sym_access_call] = STATE(2144), + [sym_anonymous_function] = STATE(2144), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(481), + [sym_integer] = ACTIONS(481), + [sym_float] = ACTIONS(481), + [sym_char] = ACTIONS(481), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [44] = { + [sym__expression] = STATE(2076), + [sym_block] = STATE(2076), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2076), + [sym_nil] = STATE(2076), + [sym__atom] = STATE(2076), + [sym_quoted_atom] = STATE(2076), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2076), + [sym_charlist] = STATE(2076), + [sym_sigil] = STATE(2076), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(1918), + [sym__keyword] = STATE(869), + [sym_quoted_keyword] = STATE(869), + [sym_list] = STATE(2076), + [sym_tuple] = STATE(2076), + [sym_bitstring] = STATE(2076), + [sym_map] = STATE(2076), + [sym_unary_operator] = STATE(2076), + [sym_binary_operator] = STATE(2076), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2076), + [sym_call] = STATE(2076), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1094), + [sym__call_arguments_without_parentheses] = STATE(1156), + [sym_do_block] = STATE(1378), + [sym_access_call] = STATE(2076), + [sym_anonymous_function] = STATE(2076), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(442), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(442), + [sym_char] = ACTIONS(442), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [45] = { + [sym__expression] = STATE(1873), + [sym_block] = STATE(1873), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1873), + [sym_nil] = STATE(1873), + [sym__atom] = STATE(1873), + [sym_quoted_atom] = STATE(1873), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1873), + [sym_charlist] = STATE(1873), + [sym_sigil] = STATE(1873), + [sym_keywords] = STATE(1879), + [sym_pair] = STATE(1870), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1873), + [sym_tuple] = STATE(1873), + [sym_bitstring] = STATE(1873), + [sym_map] = STATE(1873), + [sym_unary_operator] = STATE(1873), + [sym_binary_operator] = STATE(1873), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1873), + [sym_call] = STATE(1873), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym__call_arguments_with_parentheses_immediate] = STATE(1541), + [sym__call_arguments_without_parentheses] = STATE(1629), + [sym_do_block] = STATE(2344), + [sym_access_call] = STATE(1873), + [sym_anonymous_function] = STATE(1873), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(365), + [sym_integer] = ACTIONS(365), + [sym_float] = ACTIONS(365), + [sym_char] = ACTIONS(365), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_RBRACE] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(247), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(405), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [46] = { + [sym__expression] = STATE(1935), + [sym_block] = STATE(1935), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(1935), + [sym_nil] = STATE(1935), + [sym__atom] = STATE(1935), + [sym_quoted_atom] = STATE(1935), + [sym__quoted_i_double] = STATE(2009), + [sym__quoted_i_single] = STATE(2010), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(1935), + [sym_charlist] = STATE(1935), + [sym_sigil] = STATE(1935), + [sym_keywords] = STATE(2643), + [sym_pair] = STATE(2014), + [sym__keyword] = STATE(813), + [sym_quoted_keyword] = STATE(813), + [sym_list] = STATE(1935), + [sym_tuple] = STATE(1935), + [sym_bitstring] = STATE(1935), + [sym_map] = STATE(1935), + [sym_unary_operator] = STATE(1935), + [sym_binary_operator] = STATE(1935), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(1935), + [sym_call] = STATE(1935), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym__call_arguments_with_parentheses_immediate] = STATE(1840), + [sym__call_arguments_without_parentheses] = STATE(1939), + [sym_do_block] = STATE(3074), + [sym_access_call] = STATE(1935), + [sym_anonymous_function] = STATE(1935), + [ts_builtin_sym_end] = ACTIONS(189), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(509), + [sym_integer] = ACTIONS(509), + [sym_float] = ACTIONS(509), + [sym_char] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(541), + [anon_sym_fn] = ACTIONS(543), + [anon_sym_LPAREN2] = ACTIONS(545), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(547), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [47] = { + [sym__expression] = STATE(1935), + [sym_block] = STATE(1935), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(1935), + [sym_nil] = STATE(1935), + [sym__atom] = STATE(1935), + [sym_quoted_atom] = STATE(1935), + [sym__quoted_i_double] = STATE(2009), + [sym__quoted_i_single] = STATE(2010), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(1935), + [sym_charlist] = STATE(1935), + [sym_sigil] = STATE(1935), + [sym_keywords] = STATE(2643), + [sym_pair] = STATE(2014), + [sym__keyword] = STATE(813), + [sym_quoted_keyword] = STATE(813), + [sym_list] = STATE(1935), + [sym_tuple] = STATE(1935), + [sym_bitstring] = STATE(1935), + [sym_map] = STATE(1935), + [sym_unary_operator] = STATE(1935), + [sym_binary_operator] = STATE(1935), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(1935), + [sym_call] = STATE(1935), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym__call_arguments_with_parentheses_immediate] = STATE(1911), + [sym__call_arguments_without_parentheses] = STATE(2145), + [sym_do_block] = STATE(2431), + [sym_access_call] = STATE(1935), + [sym_anonymous_function] = STATE(1935), + [ts_builtin_sym_end] = ACTIONS(245), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(509), + [sym_integer] = ACTIONS(509), + [sym_float] = ACTIONS(509), + [sym_char] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(543), + [anon_sym_LPAREN2] = ACTIONS(545), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(551), }, [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__expression] = STATE(2076), + [sym_block] = STATE(2076), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2076), + [sym_nil] = STATE(2076), + [sym__atom] = STATE(2076), + [sym_quoted_atom] = STATE(2076), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2076), + [sym_charlist] = STATE(2076), + [sym_sigil] = STATE(2076), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(1918), + [sym__keyword] = STATE(869), + [sym_quoted_keyword] = STATE(869), + [sym_list] = STATE(2076), + [sym_tuple] = STATE(2076), + [sym_bitstring] = STATE(2076), + [sym_map] = STATE(2076), + [sym_unary_operator] = STATE(2076), + [sym_binary_operator] = STATE(2076), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2076), + [sym_call] = STATE(2076), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1088), + [sym__call_arguments_without_parentheses] = STATE(1203), + [sym_do_block] = STATE(1686), + [sym_access_call] = STATE(2076), + [sym_anonymous_function] = STATE(2076), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(442), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(442), + [sym_char] = ACTIONS(442), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(302), + [anon_sym_end] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__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_do] = ACTIONS(304), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(383), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), }, [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__expression] = STATE(2144), + [sym_block] = STATE(2144), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2144), + [sym_nil] = STATE(2144), + [sym__atom] = STATE(2144), + [sym_quoted_atom] = STATE(2144), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2144), + [sym_charlist] = STATE(2144), + [sym_sigil] = STATE(2144), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(2118), + [sym__keyword] = STATE(598), + [sym_quoted_keyword] = STATE(598), + [sym_list] = STATE(2144), + [sym_tuple] = STATE(2144), + [sym_bitstring] = STATE(2144), + [sym_map] = STATE(2144), + [sym_unary_operator] = STATE(2144), + [sym_binary_operator] = STATE(2144), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2144), + [sym_call] = STATE(2144), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1095), + [sym__call_arguments_without_parentheses] = STATE(1169), + [sym_do_block] = STATE(1374), + [sym_access_call] = STATE(2144), + [sym_anonymous_function] = STATE(2144), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(481), + [sym_integer] = ACTIONS(481), + [sym_float] = ACTIONS(481), + [sym_char] = ACTIONS(481), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__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_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(443), - [sym__not_in] = ACTIONS(437), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), }, [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__expression] = STATE(1862), + [sym_block] = STATE(1862), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(1862), + [sym_nil] = STATE(1862), + [sym__atom] = STATE(1862), + [sym_quoted_atom] = STATE(1862), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1862), + [sym_charlist] = STATE(1862), + [sym_sigil] = STATE(1862), + [sym_keywords] = STATE(1255), + [sym_pair] = STATE(1872), + [sym__keyword] = STATE(845), + [sym_quoted_keyword] = STATE(845), + [sym_list] = STATE(1862), + [sym_tuple] = STATE(1862), + [sym_bitstring] = STATE(1862), + [sym_map] = STATE(1862), + [sym_unary_operator] = STATE(1862), + [sym_binary_operator] = STATE(1862), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1862), + [sym_call] = STATE(1862), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym__call_arguments_with_parentheses_immediate] = STATE(1086), + [sym__call_arguments_without_parentheses] = STATE(1119), + [sym_do_block] = STATE(1148), + [sym_access_call] = STATE(1862), + [sym_anonymous_function] = STATE(1862), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(462), + [sym_integer] = ACTIONS(462), + [sym_float] = ACTIONS(462), + [sym_char] = ACTIONS(462), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__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_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(383), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(243), }, [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__expression] = STATE(1935), + [sym_block] = STATE(1935), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(1935), + [sym_nil] = STATE(1935), + [sym__atom] = STATE(1935), + [sym_quoted_atom] = STATE(1935), + [sym__quoted_i_double] = STATE(2009), + [sym__quoted_i_single] = STATE(2010), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(1935), + [sym_charlist] = STATE(1935), + [sym_sigil] = STATE(1935), + [sym_keywords] = STATE(2643), + [sym_pair] = STATE(2014), + [sym__keyword] = STATE(813), + [sym_quoted_keyword] = STATE(813), + [sym_list] = STATE(1935), + [sym_tuple] = STATE(1935), + [sym_bitstring] = STATE(1935), + [sym_map] = STATE(1935), + [sym_unary_operator] = STATE(1935), + [sym_binary_operator] = STATE(1935), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(1935), + [sym_call] = STATE(1935), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym__call_arguments_with_parentheses_immediate] = STATE(1782), + [sym__call_arguments_without_parentheses] = STATE(2175), + [sym_do_block] = STATE(2426), + [sym_access_call] = STATE(1935), + [sym_anonymous_function] = STATE(1935), + [ts_builtin_sym_end] = ACTIONS(189), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(509), + [sym_integer] = ACTIONS(509), + [sym_float] = ACTIONS(509), + [sym_char] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(543), + [anon_sym_LPAREN2] = ACTIONS(545), + [anon_sym_LBRACK2] = ACTIONS(189), [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_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(551), }, [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__expression] = STATE(1862), + [sym_block] = STATE(1862), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(1862), + [sym_nil] = STATE(1862), + [sym__atom] = STATE(1862), + [sym_quoted_atom] = STATE(1862), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1862), + [sym_charlist] = STATE(1862), + [sym_sigil] = STATE(1862), + [sym_keywords] = STATE(1255), + [sym_pair] = STATE(1872), + [sym__keyword] = STATE(845), + [sym_quoted_keyword] = STATE(845), + [sym_list] = STATE(1862), + [sym_tuple] = STATE(1862), + [sym_bitstring] = STATE(1862), + [sym_map] = STATE(1862), + [sym_unary_operator] = STATE(1862), + [sym_binary_operator] = STATE(1862), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1862), + [sym_call] = STATE(1862), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym__call_arguments_with_parentheses_immediate] = STATE(1084), + [sym__call_arguments_without_parentheses] = STATE(1112), + [sym_do_block] = STATE(1481), + [sym_access_call] = STATE(1862), + [sym_anonymous_function] = STATE(1862), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(462), + [sym_integer] = ACTIONS(462), + [sym_float] = ACTIONS(462), + [sym_char] = ACTIONS(462), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(233), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_do] = ACTIONS(239), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(243), }, [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__expression] = STATE(2144), + [sym_block] = STATE(2144), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2144), + [sym_nil] = STATE(2144), + [sym__atom] = STATE(2144), + [sym_quoted_atom] = STATE(2144), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2144), + [sym_charlist] = STATE(2144), + [sym_sigil] = STATE(2144), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(2118), + [sym__keyword] = STATE(598), + [sym_quoted_keyword] = STATE(598), + [sym_list] = STATE(2144), + [sym_tuple] = STATE(2144), + [sym_bitstring] = STATE(2144), + [sym_map] = STATE(2144), + [sym_unary_operator] = STATE(2144), + [sym_binary_operator] = STATE(2144), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2144), + [sym_call] = STATE(2144), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1088), + [sym__call_arguments_without_parentheses] = STATE(1203), + [sym_do_block] = STATE(1686), + [sym_access_call] = STATE(2144), + [sym_anonymous_function] = STATE(2144), + [aux_sym__terminator_token1] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(481), + [sym_integer] = ACTIONS(481), + [sym_float] = ACTIONS(481), + [sym_char] = ACTIONS(481), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(302), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(189), [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_do] = ACTIONS(304), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(300), }, [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__expression] = STATE(1935), + [sym_block] = STATE(1935), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(1935), + [sym_nil] = STATE(1935), + [sym__atom] = STATE(1935), + [sym_quoted_atom] = STATE(1935), + [sym__quoted_i_double] = STATE(2009), + [sym__quoted_i_single] = STATE(2010), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(1935), + [sym_charlist] = STATE(1935), + [sym_sigil] = STATE(1935), + [sym_keywords] = STATE(2643), + [sym_pair] = STATE(2014), + [sym__keyword] = STATE(813), + [sym_quoted_keyword] = STATE(813), + [sym_list] = STATE(1935), + [sym_tuple] = STATE(1935), + [sym_bitstring] = STATE(1935), + [sym_map] = STATE(1935), + [sym_unary_operator] = STATE(1935), + [sym_binary_operator] = STATE(1935), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(1935), + [sym_call] = STATE(1935), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym__call_arguments_with_parentheses_immediate] = STATE(1849), + [sym__call_arguments_without_parentheses] = STATE(1937), + [sym_do_block] = STATE(3071), + [sym_access_call] = STATE(1935), + [sym_anonymous_function] = STATE(1935), + [ts_builtin_sym_end] = ACTIONS(245), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(509), + [sym_integer] = ACTIONS(509), + [sym_float] = ACTIONS(509), + [sym_char] = ACTIONS(509), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(509), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(541), + [anon_sym_fn] = ACTIONS(543), + [anon_sym_LPAREN2] = ACTIONS(545), + [anon_sym_LBRACK2] = ACTIONS(245), [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_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(551), }, [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__expression] = STATE(1862), + [sym_block] = STATE(1862), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(1862), + [sym_nil] = STATE(1862), + [sym__atom] = STATE(1862), + [sym_quoted_atom] = STATE(1862), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1862), + [sym_charlist] = STATE(1862), + [sym_sigil] = STATE(1862), + [sym_keywords] = STATE(1255), + [sym_pair] = STATE(1872), + [sym__keyword] = STATE(845), + [sym_quoted_keyword] = STATE(845), + [sym_list] = STATE(1862), + [sym_tuple] = STATE(1862), + [sym_bitstring] = STATE(1862), + [sym_map] = STATE(1862), + [sym_unary_operator] = STATE(1862), + [sym_binary_operator] = STATE(1862), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1862), + [sym_call] = STATE(1862), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym__call_arguments_with_parentheses_immediate] = STATE(1085), + [sym__call_arguments_without_parentheses] = STATE(1107), + [sym_do_block] = STATE(1480), + [sym_access_call] = STATE(1862), + [sym_anonymous_function] = STATE(1862), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(193), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(462), + [sym_integer] = ACTIONS(462), + [sym_float] = ACTIONS(462), + [sym_char] = ACTIONS(462), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(462), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(470), + [anon_sym_DASH] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(233), + [anon_sym_fn] = ACTIONS(235), + [anon_sym_LPAREN2] = ACTIONS(237), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__keyword_special_literal] = ACTIONS(133), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(273), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(243), }, [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__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2026), + [sym_nil] = STATE(2026), + [sym__atom] = STATE(2026), + [sym_quoted_atom] = STATE(2026), + [sym__quoted_i_double] = STATE(1958), + [sym__quoted_i_single] = STATE(1961), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), [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_keywords] = STATE(2573), + [sym_pair] = STATE(2141), + [sym__keyword] = STATE(460), + [sym_quoted_keyword] = STATE(460), [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_unary_operator] = STATE(2026), + [sym_binary_operator] = STATE(2026), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = 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__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym__call_arguments_with_parentheses_immediate] = STATE(1858), + [sym__call_arguments_without_parentheses] = STATE(2072), + [sym_do_block] = STATE(3238), [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(560), + [sym_integer] = ACTIONS(560), + [sym_float] = ACTIONS(560), + [sym_char] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(592), + [anon_sym_fn] = ACTIONS(594), + [anon_sym_LPAREN2] = ACTIONS(596), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_do] = ACTIONS(598), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(602), }, - [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), + [57] = { + [sym__expression] = STATE(2026), + [sym_block] = STATE(2026), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2026), + [sym_nil] = STATE(2026), + [sym__atom] = STATE(2026), + [sym_quoted_atom] = STATE(2026), + [sym__quoted_i_double] = STATE(1958), + [sym__quoted_i_single] = STATE(1961), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2026), + [sym_charlist] = STATE(2026), + [sym_sigil] = STATE(2026), + [sym_keywords] = STATE(2573), + [sym_pair] = STATE(2141), + [sym__keyword] = STATE(460), + [sym_quoted_keyword] = STATE(460), + [sym_list] = STATE(2026), + [sym_tuple] = STATE(2026), + [sym_bitstring] = STATE(2026), + [sym_map] = STATE(2026), + [sym_unary_operator] = STATE(2026), + [sym_binary_operator] = STATE(2026), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2026), + [sym_call] = STATE(2026), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym__call_arguments_with_parentheses_immediate] = STATE(1898), + [sym__call_arguments_without_parentheses] = STATE(2126), + [sym_do_block] = STATE(2468), + [sym_access_call] = STATE(2026), + [sym_anonymous_function] = STATE(2026), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(560), + [sym_integer] = ACTIONS(560), + [sym_float] = ACTIONS(560), + [sym_char] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(594), + [anon_sym_LPAREN2] = ACTIONS(596), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(602), }, - [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), + [58] = { + [sym__expression] = STATE(2026), + [sym_block] = STATE(2026), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2026), + [sym_nil] = STATE(2026), + [sym__atom] = STATE(2026), + [sym_quoted_atom] = STATE(2026), + [sym__quoted_i_double] = STATE(1958), + [sym__quoted_i_single] = STATE(1961), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2026), + [sym_charlist] = STATE(2026), + [sym_sigil] = STATE(2026), + [sym_keywords] = STATE(2573), + [sym_pair] = STATE(2141), + [sym__keyword] = STATE(460), + [sym_quoted_keyword] = STATE(460), + [sym_list] = STATE(2026), + [sym_tuple] = STATE(2026), + [sym_bitstring] = STATE(2026), + [sym_map] = STATE(2026), + [sym_unary_operator] = STATE(2026), + [sym_binary_operator] = STATE(2026), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2026), + [sym_call] = STATE(2026), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym__call_arguments_with_parentheses_immediate] = STATE(1899), + [sym__call_arguments_without_parentheses] = STATE(2130), + [sym_do_block] = STATE(2466), + [sym_access_call] = STATE(2026), + [sym_anonymous_function] = STATE(2026), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(191), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(560), + [sym_integer] = ACTIONS(560), + [sym_float] = ACTIONS(560), + [sym_char] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(191), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(594), + [anon_sym_LPAREN2] = ACTIONS(596), + [anon_sym_LBRACK2] = ACTIONS(189), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(135), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(139), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(602), }, - [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), + [59] = { + [sym__expression] = STATE(2144), + [sym_block] = STATE(2144), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2144), + [sym_nil] = STATE(2144), + [sym__atom] = STATE(2144), + [sym_quoted_atom] = STATE(2144), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2144), + [sym_charlist] = STATE(2144), + [sym_sigil] = STATE(2144), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(2118), + [sym__keyword] = STATE(598), + [sym_quoted_keyword] = STATE(598), + [sym_list] = STATE(2144), + [sym_tuple] = STATE(2144), + [sym_bitstring] = STATE(2144), + [sym_map] = STATE(2144), + [sym_unary_operator] = STATE(2144), + [sym_binary_operator] = STATE(2144), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2144), + [sym_call] = STATE(2144), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), [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__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1125), + [sym__call_arguments_without_parentheses] = STATE(1208), + [sym_do_block] = STATE(1687), + [sym_access_call] = STATE(2144), + [sym_anonymous_function] = STATE(2144), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(481), + [sym_integer] = ACTIONS(481), + [sym_float] = ACTIONS(481), + [sym_char] = ACTIONS(481), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(489), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(302), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1115), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1117), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), }, - [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), + [60] = { + [sym__expression] = STATE(2598), + [sym_block] = STATE(2598), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2598), + [sym_nil] = STATE(2598), + [sym__atom] = STATE(2598), + [sym_quoted_atom] = STATE(2598), + [sym__quoted_i_double] = STATE(2482), + [sym__quoted_i_single] = STATE(2485), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2598), + [sym_charlist] = STATE(2598), + [sym_sigil] = STATE(2598), + [sym_keywords] = STATE(2669), + [sym_pair] = STATE(2589), + [sym__keyword] = STATE(541), + [sym_quoted_keyword] = STATE(541), + [sym_list] = STATE(2598), + [sym_tuple] = STATE(2598), + [sym_bitstring] = STATE(2598), + [sym_map] = STATE(2598), + [sym_unary_operator] = STATE(2598), + [sym_binary_operator] = STATE(2598), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2598), + [sym_call] = STATE(2598), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), [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__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym__call_arguments_with_parentheses_immediate] = STATE(1962), + [sym__call_arguments_without_parentheses] = STATE(2639), + [sym_do_block] = STATE(2980), + [sym_access_call] = STATE(2598), + [sym_anonymous_function] = STATE(2598), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(615), + [sym_char] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(247), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [61] = { + [sym__expression] = STATE(2598), + [sym_block] = STATE(2598), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2598), + [sym_nil] = STATE(2598), + [sym__atom] = STATE(2598), + [sym_quoted_atom] = STATE(2598), + [sym__quoted_i_double] = STATE(2482), + [sym__quoted_i_single] = STATE(2485), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2598), + [sym_charlist] = STATE(2598), + [sym_sigil] = STATE(2598), + [sym_keywords] = STATE(2669), + [sym_pair] = STATE(2589), + [sym__keyword] = STATE(541), + [sym_quoted_keyword] = STATE(541), + [sym_list] = STATE(2598), + [sym_tuple] = STATE(2598), + [sym_bitstring] = STATE(2598), + [sym_map] = STATE(2598), + [sym_unary_operator] = STATE(2598), + [sym_binary_operator] = STATE(2598), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2598), + [sym_call] = STATE(2598), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym__call_arguments_with_parentheses_immediate] = STATE(1966), + [sym__call_arguments_without_parentheses] = STATE(2637), + [sym_do_block] = STATE(2979), + [sym_access_call] = STATE(2598), + [sym_anonymous_function] = STATE(2598), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(615), + [sym_char] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(191), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [62] = { + [sym__expression] = STATE(2598), + [sym_block] = STATE(2598), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2598), + [sym_nil] = STATE(2598), + [sym__atom] = STATE(2598), + [sym_quoted_atom] = STATE(2598), + [sym__quoted_i_double] = STATE(2482), + [sym__quoted_i_single] = STATE(2485), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2598), + [sym_charlist] = STATE(2598), + [sym_sigil] = STATE(2598), + [sym_keywords] = STATE(2669), + [sym_pair] = STATE(2589), + [sym__keyword] = STATE(541), + [sym_quoted_keyword] = STATE(541), + [sym_list] = STATE(2598), + [sym_tuple] = STATE(2598), + [sym_bitstring] = STATE(2598), + [sym_map] = STATE(2598), + [sym_unary_operator] = STATE(2598), + [sym_binary_operator] = STATE(2598), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2598), + [sym_call] = STATE(2598), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym__call_arguments_with_parentheses_immediate] = STATE(2011), + [sym__call_arguments_without_parentheses] = STATE(2588), + [sym_do_block] = STATE(3320), + [sym_access_call] = STATE(2598), + [sym_anonymous_function] = STATE(2598), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(615), + [sym_char] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(191), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(658), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(660), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [63] = { + [sym__expression] = STATE(2076), + [sym_block] = STATE(2076), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2076), + [sym_nil] = STATE(2076), + [sym__atom] = STATE(2076), + [sym_quoted_atom] = STATE(2076), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2076), + [sym_charlist] = STATE(2076), + [sym_sigil] = STATE(2076), + [sym_keywords] = STATE(1285), + [sym_pair] = STATE(1918), + [sym__keyword] = STATE(869), + [sym_quoted_keyword] = STATE(869), + [sym_list] = STATE(2076), + [sym_tuple] = STATE(2076), + [sym_bitstring] = STATE(2076), + [sym_map] = STATE(2076), + [sym_unary_operator] = STATE(2076), + [sym_binary_operator] = STATE(2076), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2076), + [sym_call] = STATE(2076), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym__call_arguments_with_parentheses_immediate] = STATE(1125), + [sym__call_arguments_without_parentheses] = STATE(1208), + [sym_do_block] = STATE(1687), + [sym_access_call] = STATE(2076), + [sym_anonymous_function] = STATE(2076), + [aux_sym__terminator_token1] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(442), + [sym_integer] = ACTIONS(442), + [sym_float] = ACTIONS(442), + [sym_char] = ACTIONS(442), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(498), + [anon_sym_DASH] = ACTIONS(498), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(302), + [anon_sym_end] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_LPAREN2] = ACTIONS(293), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [64] = { + [sym__expression] = STATE(1093), + [sym_block] = STATE(1093), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1093), + [sym_nil] = STATE(1093), + [sym__atom] = STATE(1093), + [sym_quoted_atom] = STATE(1093), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1093), + [sym_charlist] = STATE(1093), + [sym_sigil] = STATE(1093), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1093), + [sym_tuple] = STATE(1093), + [sym_bitstring] = STATE(1093), + [sym_map] = STATE(1093), + [sym_unary_operator] = STATE(1093), + [sym_binary_operator] = STATE(1093), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1093), + [sym_call] = STATE(1093), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1093), + [sym_stab_clause] = STATE(3585), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1093), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(662), + [sym_integer] = ACTIONS(662), + [sym_float] = ACTIONS(662), + [sym_char] = ACTIONS(662), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(662), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(664), + [anon_sym_catch] = ACTIONS(664), + [anon_sym_else] = ACTIONS(664), + [anon_sym_end] = ACTIONS(664), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(664), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [65] = { + [sym__expression] = STATE(2026), + [sym_block] = STATE(2026), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2026), + [sym_nil] = STATE(2026), + [sym__atom] = STATE(2026), + [sym_quoted_atom] = STATE(2026), + [sym__quoted_i_double] = STATE(1958), + [sym__quoted_i_single] = STATE(1961), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2026), + [sym_charlist] = STATE(2026), + [sym_sigil] = STATE(2026), + [sym_keywords] = STATE(2573), + [sym_pair] = STATE(2141), + [sym__keyword] = STATE(460), + [sym_quoted_keyword] = STATE(460), + [sym_list] = STATE(2026), + [sym_tuple] = STATE(2026), + [sym_bitstring] = STATE(2026), + [sym_map] = STATE(2026), + [sym_unary_operator] = STATE(2026), + [sym_binary_operator] = STATE(2026), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2026), + [sym_call] = STATE(2026), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym__call_arguments_with_parentheses_immediate] = STATE(1859), + [sym__call_arguments_without_parentheses] = STATE(2027), + [sym_do_block] = STATE(3239), + [sym_access_call] = STATE(2026), + [sym_anonymous_function] = STATE(2026), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(247), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(560), + [sym_integer] = ACTIONS(560), + [sym_float] = ACTIONS(560), + [sym_char] = ACTIONS(560), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(604), + [anon_sym_DASH] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(271), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(592), + [anon_sym_fn] = ACTIONS(594), + [anon_sym_LPAREN2] = ACTIONS(596), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [66] = { + [sym__expression] = STATE(1091), + [sym_block] = STATE(1091), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1091), + [sym_nil] = STATE(1091), + [sym__atom] = STATE(1091), + [sym_quoted_atom] = STATE(1091), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1091), + [sym_charlist] = STATE(1091), + [sym_sigil] = STATE(1091), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_bitstring] = STATE(1091), + [sym_map] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_binary_operator] = STATE(1091), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1091), + [sym_call] = STATE(1091), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1091), + [sym_stab_clause] = STATE(3573), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1091), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(666), + [sym_integer] = ACTIONS(666), + [sym_float] = ACTIONS(666), + [sym_char] = ACTIONS(666), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(668), + [anon_sym_catch] = ACTIONS(668), + [anon_sym_else] = ACTIONS(668), + [anon_sym_end] = ACTIONS(668), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(668), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [67] = { + [sym__expression] = STATE(2603), + [sym_block] = STATE(2603), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2603), + [sym_nil] = STATE(2603), + [sym__atom] = STATE(2603), + [sym_quoted_atom] = STATE(2603), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2603), + [sym_charlist] = STATE(2603), + [sym_sigil] = STATE(2603), + [sym_keywords] = STATE(1879), + [sym_pair] = STATE(2646), + [sym__keyword] = STATE(836), + [sym_quoted_keyword] = STATE(836), + [sym_list] = STATE(2603), + [sym_tuple] = STATE(2603), + [sym_bitstring] = STATE(2603), + [sym_map] = STATE(2603), + [sym_unary_operator] = STATE(2603), + [sym_binary_operator] = STATE(2603), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2603), + [sym_call] = STATE(2603), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym__call_arguments_with_parentheses_immediate] = STATE(1418), + [sym__call_arguments_without_parentheses] = STATE(1735), + [sym_do_block] = STATE(1801), + [sym_access_call] = STATE(2603), + [sym_anonymous_function] = STATE(2603), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(672), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(672), + [sym_char] = ACTIONS(672), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(247), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [68] = { + [sym__expression] = STATE(2603), + [sym_block] = STATE(2603), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2603), + [sym_nil] = STATE(2603), + [sym__atom] = STATE(2603), + [sym_quoted_atom] = STATE(2603), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2603), + [sym_charlist] = STATE(2603), + [sym_sigil] = STATE(2603), + [sym_keywords] = STATE(1879), + [sym_pair] = STATE(2646), + [sym__keyword] = STATE(836), + [sym_quoted_keyword] = STATE(836), + [sym_list] = STATE(2603), + [sym_tuple] = STATE(2603), + [sym_bitstring] = STATE(2603), + [sym_map] = STATE(2603), + [sym_unary_operator] = STATE(2603), + [sym_binary_operator] = STATE(2603), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2603), + [sym_call] = STATE(2603), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym__call_arguments_with_parentheses_immediate] = STATE(1417), + [sym__call_arguments_without_parentheses] = STATE(1732), + [sym_do_block] = STATE(1805), + [sym_access_call] = STATE(2603), + [sym_anonymous_function] = STATE(2603), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(672), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(672), + [sym_char] = ACTIONS(672), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(191), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(189), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [69] = { + [sym__expression] = STATE(1100), + [sym_block] = STATE(1100), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1100), + [sym_nil] = STATE(1100), + [sym__atom] = STATE(1100), + [sym_quoted_atom] = STATE(1100), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1100), + [sym_charlist] = STATE(1100), + [sym_sigil] = STATE(1100), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1100), + [sym_tuple] = STATE(1100), + [sym_bitstring] = STATE(1100), + [sym_map] = STATE(1100), + [sym_unary_operator] = STATE(1100), + [sym_binary_operator] = STATE(1100), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1100), + [sym_call] = STATE(1100), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1100), + [sym_stab_clause] = STATE(3596), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1100), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(690), + [sym_integer] = ACTIONS(690), + [sym_float] = ACTIONS(690), + [sym_char] = ACTIONS(690), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(692), + [anon_sym_catch] = ACTIONS(692), + [anon_sym_else] = ACTIONS(692), + [anon_sym_end] = ACTIONS(692), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(692), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [70] = { + [sym__expression] = STATE(1096), + [sym_block] = STATE(1096), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1096), + [sym_nil] = STATE(1096), + [sym__atom] = STATE(1096), + [sym_quoted_atom] = STATE(1096), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1096), + [sym_charlist] = STATE(1096), + [sym_sigil] = STATE(1096), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1096), + [sym_tuple] = STATE(1096), + [sym_bitstring] = STATE(1096), + [sym_map] = STATE(1096), + [sym_unary_operator] = STATE(1096), + [sym_binary_operator] = STATE(1096), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1096), + [sym_call] = STATE(1096), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1096), + [sym_stab_clause] = STATE(3591), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(1096), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(694), + [sym_integer] = ACTIONS(694), + [sym_float] = ACTIONS(694), + [sym_char] = ACTIONS(694), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(696), + [anon_sym_catch] = ACTIONS(696), + [anon_sym_else] = ACTIONS(696), + [anon_sym_end] = ACTIONS(696), + [anon_sym_fn] = ACTIONS(115), + [anon_sym_rescue] = ACTIONS(696), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [71] = { + [sym__expression] = STATE(2603), + [sym_block] = STATE(2603), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2603), + [sym_nil] = STATE(2603), + [sym__atom] = STATE(2603), + [sym_quoted_atom] = STATE(2603), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2603), + [sym_charlist] = STATE(2603), + [sym_sigil] = STATE(2603), + [sym_keywords] = STATE(1879), + [sym_pair] = STATE(2646), + [sym__keyword] = STATE(836), + [sym_quoted_keyword] = STATE(836), + [sym_list] = STATE(2603), + [sym_tuple] = STATE(2603), + [sym_bitstring] = STATE(2603), + [sym_map] = STATE(2603), + [sym_unary_operator] = STATE(2603), + [sym_binary_operator] = STATE(2603), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2603), + [sym_call] = STATE(2603), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym__call_arguments_with_parentheses_immediate] = STATE(1540), + [sym__call_arguments_without_parentheses] = STATE(1626), + [sym_do_block] = STATE(2333), + [sym_access_call] = STATE(2603), + [sym_anonymous_function] = STATE(2603), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(672), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(672), + [sym_char] = ACTIONS(672), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(191), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SLASH] = ACTIONS(191), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(191), + [sym_keyword] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(191), + [anon_sym_DASH] = ACTIONS(191), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(191), + [anon_sym_BSLASH_BSLASH] = ACTIONS(191), + [anon_sym_when] = ACTIONS(191), + [anon_sym_COLON_COLON] = ACTIONS(191), + [anon_sym_EQ_GT] = ACTIONS(191), + [anon_sym_EQ] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(191), + [anon_sym_or] = ACTIONS(191), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_AMP_AMP_AMP] = ACTIONS(191), + [anon_sym_and] = ACTIONS(191), + [anon_sym_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ] = ACTIONS(191), + [anon_sym_EQ_TILDE] = ACTIONS(191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(191), + [anon_sym_LT_EQ] = ACTIONS(191), + [anon_sym_GT_EQ] = ACTIONS(191), + [anon_sym_PIPE_GT] = ACTIONS(191), + [anon_sym_LT_LT_LT] = ACTIONS(191), + [anon_sym_GT_GT_GT] = ACTIONS(191), + [anon_sym_LT_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT_GT] = ACTIONS(191), + [anon_sym_LT_TILDE] = ACTIONS(191), + [anon_sym_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_TILDE_GT] = ACTIONS(191), + [anon_sym_LT_PIPE_GT] = ACTIONS(191), + [anon_sym_in] = ACTIONS(191), + [anon_sym_CARET_CARET_CARET] = ACTIONS(191), + [anon_sym_SLASH_SLASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH] = ACTIONS(191), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(191), + [anon_sym_DASH_DASH_DASH] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(191), + [anon_sym_LT_GT] = ACTIONS(191), + [anon_sym_STAR] = ACTIONS(191), + [anon_sym_STAR_STAR] = ACTIONS(191), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(191), + [anon_sym_do] = ACTIONS(405), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_LBRACK2] = ACTIONS(189), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(407), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(189), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [72] = { + [sym__expression] = STATE(2598), + [sym_block] = STATE(2598), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2598), + [sym_nil] = STATE(2598), + [sym__atom] = STATE(2598), + [sym_quoted_atom] = STATE(2598), + [sym__quoted_i_double] = STATE(2482), + [sym__quoted_i_single] = STATE(2485), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2598), + [sym_charlist] = STATE(2598), + [sym_sigil] = STATE(2598), + [sym_keywords] = STATE(2669), + [sym_pair] = STATE(2589), + [sym__keyword] = STATE(541), + [sym_quoted_keyword] = STATE(541), + [sym_list] = STATE(2598), + [sym_tuple] = STATE(2598), + [sym_bitstring] = STATE(2598), + [sym_map] = STATE(2598), + [sym_unary_operator] = STATE(2598), + [sym_binary_operator] = STATE(2598), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2598), + [sym_call] = STATE(2598), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym__call_arguments_with_parentheses_immediate] = STATE(2021), + [sym__call_arguments_without_parentheses] = STATE(2585), + [sym_do_block] = STATE(3326), + [sym_access_call] = STATE(2598), + [sym_anonymous_function] = STATE(2598), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(615), + [sym_integer] = ACTIONS(615), + [sym_float] = ACTIONS(615), + [sym_char] = ACTIONS(615), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(247), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(658), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_LPAREN2] = ACTIONS(652), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [73] = { + [sym__terminator] = STATE(114), + [sym__expression] = STATE(1742), + [sym_block] = STATE(1742), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1742), + [sym_nil] = STATE(1742), + [sym__atom] = STATE(1742), + [sym_quoted_atom] = STATE(1742), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1742), + [sym_charlist] = STATE(1742), + [sym_sigil] = STATE(1742), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1742), + [sym_tuple] = STATE(1742), + [sym_bitstring] = STATE(1742), + [sym_map] = STATE(1742), + [sym_unary_operator] = STATE(1742), + [sym_binary_operator] = STATE(1742), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1742), + [sym_call] = STATE(1742), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1742), + [sym_stab_clause] = STATE(4141), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1742), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(702), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(710), + [sym_integer] = ACTIONS(710), + [sym_float] = ACTIONS(710), + [sym_char] = ACTIONS(710), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [74] = { + [sym__terminator] = STATE(113), + [sym__expression] = STATE(1723), + [sym_block] = STATE(1723), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1723), + [sym_nil] = STATE(1723), + [sym__atom] = STATE(1723), + [sym_quoted_atom] = STATE(1723), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1723), + [sym_charlist] = STATE(1723), + [sym_sigil] = STATE(1723), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1723), + [sym_tuple] = STATE(1723), + [sym_bitstring] = STATE(1723), + [sym_map] = STATE(1723), + [sym_unary_operator] = STATE(1723), + [sym_binary_operator] = STATE(1723), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1723), + [sym_call] = STATE(1723), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1723), + [sym_stab_clause] = STATE(4144), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1723), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(726), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(728), + [sym_integer] = ACTIONS(728), + [sym_float] = ACTIONS(728), + [sym_char] = ACTIONS(728), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [75] = { + [sym__terminator] = STATE(120), + [sym__expression] = STATE(1748), + [sym_block] = STATE(1748), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1748), + [sym_nil] = STATE(1748), + [sym__atom] = STATE(1748), + [sym_quoted_atom] = STATE(1748), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1748), + [sym_charlist] = STATE(1748), + [sym_sigil] = STATE(1748), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1748), + [sym_tuple] = STATE(1748), + [sym_bitstring] = STATE(1748), + [sym_map] = STATE(1748), + [sym_unary_operator] = STATE(1748), + [sym_binary_operator] = STATE(1748), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1748), + [sym_call] = STATE(1748), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1748), + [sym_stab_clause] = STATE(4238), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1748), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(732), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(734), + [sym_integer] = ACTIONS(734), + [sym_float] = ACTIONS(734), + [sym_char] = ACTIONS(734), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(734), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [76] = { + [sym__expression] = STATE(2603), + [sym_block] = STATE(2603), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2603), + [sym_nil] = STATE(2603), + [sym__atom] = STATE(2603), + [sym_quoted_atom] = STATE(2603), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2603), + [sym_charlist] = STATE(2603), + [sym_sigil] = STATE(2603), + [sym_keywords] = STATE(1879), + [sym_pair] = STATE(2646), + [sym__keyword] = STATE(836), + [sym_quoted_keyword] = STATE(836), + [sym_list] = STATE(2603), + [sym_tuple] = STATE(2603), + [sym_bitstring] = STATE(2603), + [sym_map] = STATE(2603), + [sym_unary_operator] = STATE(2603), + [sym_binary_operator] = STATE(2603), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2603), + [sym_call] = STATE(2603), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym__call_arguments_with_parentheses_immediate] = STATE(1541), + [sym__call_arguments_without_parentheses] = STATE(1629), + [sym_do_block] = STATE(2344), + [sym_access_call] = STATE(2603), + [sym_anonymous_function] = STATE(2603), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(672), + [sym_integer] = ACTIONS(672), + [sym_float] = ACTIONS(672), + [sym_char] = ACTIONS(672), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(672), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(247), + [sym_keyword] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(405), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [77] = { + [sym__terminator] = STATE(120), + [sym__expression] = STATE(1746), + [sym_block] = STATE(1746), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1746), + [sym_nil] = STATE(1746), + [sym__atom] = STATE(1746), + [sym_quoted_atom] = STATE(1746), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1746), + [sym_charlist] = STATE(1746), + [sym_sigil] = STATE(1746), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1746), + [sym_tuple] = STATE(1746), + [sym_bitstring] = STATE(1746), + [sym_map] = STATE(1746), + [sym_unary_operator] = STATE(1746), + [sym_binary_operator] = STATE(1746), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1746), + [sym_call] = STATE(1746), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1746), + [sym_stab_clause] = STATE(4238), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1746), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(730), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(732), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(736), + [sym_integer] = ACTIONS(736), + [sym_float] = ACTIONS(736), + [sym_char] = ACTIONS(736), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [78] = { + [sym__terminator] = STATE(123), + [sym__expression] = STATE(1443), + [sym_block] = STATE(1443), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1443), + [sym_nil] = STATE(1443), + [sym__atom] = STATE(1443), + [sym_quoted_atom] = STATE(1443), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1443), + [sym_charlist] = STATE(1443), + [sym_sigil] = STATE(1443), + [sym_keywords] = STATE(4685), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1443), + [sym_tuple] = STATE(1443), + [sym_bitstring] = STATE(1443), + [sym_map] = STATE(1443), + [sym_unary_operator] = STATE(1443), + [sym_binary_operator] = STATE(1443), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1443), + [sym_call] = STATE(1443), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1443), + [sym_stab_clause] = STATE(4197), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1443), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(740), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(742), + [sym_integer] = ACTIONS(742), + [sym_float] = ACTIONS(742), + [sym_char] = ACTIONS(742), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [79] = { + [sym__terminator] = STATE(114), + [sym__expression] = STATE(1751), + [sym_block] = STATE(1751), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1751), + [sym_nil] = STATE(1751), + [sym__atom] = STATE(1751), + [sym_quoted_atom] = STATE(1751), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1751), + [sym_charlist] = STATE(1751), + [sym_sigil] = STATE(1751), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1751), + [sym_tuple] = STATE(1751), + [sym_bitstring] = STATE(1751), + [sym_map] = STATE(1751), + [sym_unary_operator] = STATE(1751), + [sym_binary_operator] = STATE(1751), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1751), + [sym_call] = STATE(1751), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1751), + [sym_stab_clause] = STATE(4141), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1751), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(702), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(744), + [sym_integer] = ACTIONS(744), + [sym_float] = ACTIONS(744), + [sym_char] = ACTIONS(744), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [80] = { + [sym__terminator] = STATE(118), [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__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1764), + [sym_nil] = STATE(1764), + [sym__atom] = STATE(1764), + [sym_quoted_atom] = STATE(1764), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), [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_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), [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_unary_operator] = STATE(1764), + [sym_binary_operator] = STATE(1764), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = 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__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), [sym_access_call] = STATE(1764), + [sym_stab_clause] = STATE(4189), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), [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), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(748), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(750), + [sym_integer] = ACTIONS(750), + [sym_float] = ACTIONS(750), + [sym_char] = ACTIONS(750), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(757), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [1085] = { + [81] = { + [sym__terminator] = STATE(124), + [sym__expression] = STATE(1681), + [sym_block] = STATE(1681), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1681), + [sym_nil] = STATE(1681), + [sym__atom] = STATE(1681), + [sym_quoted_atom] = STATE(1681), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1681), + [sym_charlist] = STATE(1681), + [sym_sigil] = STATE(1681), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1681), + [sym_tuple] = STATE(1681), + [sym_bitstring] = STATE(1681), + [sym_map] = STATE(1681), + [sym_unary_operator] = STATE(1681), + [sym_binary_operator] = STATE(1681), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1681), + [sym_call] = STATE(1681), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1681), + [sym_stab_clause] = STATE(4168), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1681), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(754), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(756), + [sym_integer] = ACTIONS(756), + [sym_float] = ACTIONS(756), + [sym_char] = ACTIONS(756), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [82] = { + [sym__terminator] = STATE(119), + [sym__expression] = STATE(1669), + [sym_block] = STATE(1669), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1669), + [sym_nil] = STATE(1669), + [sym__atom] = STATE(1669), + [sym_quoted_atom] = STATE(1669), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1669), + [sym_charlist] = STATE(1669), + [sym_sigil] = STATE(1669), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1669), + [sym_tuple] = STATE(1669), + [sym_bitstring] = STATE(1669), + [sym_map] = STATE(1669), + [sym_unary_operator] = STATE(1669), + [sym_binary_operator] = STATE(1669), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1669), + [sym_call] = STATE(1669), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1669), + [sym_stab_clause] = STATE(4143), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1669), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(760), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [83] = { + [sym__terminator] = STATE(116), + [sym__expression] = STATE(1548), + [sym_block] = STATE(1548), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1548), + [sym_nil] = STATE(1548), + [sym__atom] = STATE(1548), + [sym_quoted_atom] = STATE(1548), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1548), + [sym_charlist] = STATE(1548), + [sym_sigil] = STATE(1548), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1548), + [sym_tuple] = STATE(1548), + [sym_bitstring] = STATE(1548), + [sym_map] = STATE(1548), + [sym_unary_operator] = STATE(1548), + [sym_binary_operator] = STATE(1548), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1548), + [sym_call] = STATE(1548), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1548), + [sym_stab_clause] = STATE(4240), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1548), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(766), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(768), + [sym_integer] = ACTIONS(768), + [sym_float] = ACTIONS(768), + [sym_char] = ACTIONS(768), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [84] = { + [sym__terminator] = STATE(121), + [sym__expression] = STATE(1661), + [sym_block] = STATE(1661), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1661), + [sym_nil] = STATE(1661), + [sym__atom] = STATE(1661), + [sym_quoted_atom] = STATE(1661), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1661), + [sym_charlist] = STATE(1661), + [sym_sigil] = STATE(1661), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1661), + [sym_tuple] = STATE(1661), + [sym_bitstring] = STATE(1661), + [sym_map] = STATE(1661), + [sym_unary_operator] = STATE(1661), + [sym_binary_operator] = STATE(1661), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1661), + [sym_call] = STATE(1661), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1661), + [sym_stab_clause] = STATE(4247), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1661), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(772), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(774), + [sym_integer] = ACTIONS(774), + [sym_float] = ACTIONS(774), + [sym_char] = ACTIONS(774), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [85] = { + [sym__terminator] = STATE(113), + [sym__expression] = STATE(1635), + [sym_block] = STATE(1635), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1635), + [sym_nil] = STATE(1635), + [sym__atom] = STATE(1635), + [sym_quoted_atom] = STATE(1635), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1635), + [sym_charlist] = STATE(1635), + [sym_sigil] = STATE(1635), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1635), + [sym_tuple] = STATE(1635), + [sym_bitstring] = STATE(1635), + [sym_map] = STATE(1635), + [sym_unary_operator] = STATE(1635), + [sym_binary_operator] = STATE(1635), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1635), + [sym_call] = STATE(1635), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1635), + [sym_stab_clause] = STATE(4144), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1635), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(726), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(776), + [sym_integer] = ACTIONS(776), + [sym_float] = ACTIONS(776), + [sym_char] = ACTIONS(776), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [86] = { + [sym__terminator] = STATE(121), + [sym__expression] = STATE(1567), + [sym_block] = STATE(1567), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1567), + [sym_nil] = STATE(1567), + [sym__atom] = STATE(1567), + [sym_quoted_atom] = STATE(1567), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1567), + [sym_charlist] = STATE(1567), + [sym_sigil] = STATE(1567), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1567), + [sym_tuple] = STATE(1567), + [sym_bitstring] = STATE(1567), + [sym_map] = STATE(1567), + [sym_unary_operator] = STATE(1567), + [sym_binary_operator] = STATE(1567), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1567), + [sym_call] = STATE(1567), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1567), + [sym_stab_clause] = STATE(4247), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1567), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(772), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(778), + [sym_integer] = ACTIONS(778), + [sym_float] = ACTIONS(778), + [sym_char] = ACTIONS(778), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [87] = { + [sym__terminator] = STATE(123), + [sym__expression] = STATE(1581), + [sym_block] = STATE(1581), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1581), + [sym_nil] = STATE(1581), + [sym__atom] = STATE(1581), + [sym_quoted_atom] = STATE(1581), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1581), + [sym_charlist] = STATE(1581), + [sym_sigil] = STATE(1581), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1581), + [sym_tuple] = STATE(1581), + [sym_bitstring] = STATE(1581), + [sym_map] = STATE(1581), + [sym_unary_operator] = STATE(1581), + [sym_binary_operator] = STATE(1581), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1581), + [sym_call] = STATE(1581), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1581), + [sym_stab_clause] = STATE(4197), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1581), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(782), + [sym_integer] = ACTIONS(782), + [sym_float] = ACTIONS(782), + [sym_char] = ACTIONS(782), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [88] = { + [sym__terminator] = STATE(117), + [sym__expression] = STATE(1412), + [sym_block] = STATE(1412), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1412), + [sym_nil] = STATE(1412), + [sym__atom] = STATE(1412), + [sym_quoted_atom] = STATE(1412), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1412), + [sym_charlist] = STATE(1412), + [sym_sigil] = STATE(1412), + [sym_keywords] = STATE(4685), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1412), + [sym_tuple] = STATE(1412), + [sym_bitstring] = STATE(1412), + [sym_map] = STATE(1412), + [sym_unary_operator] = STATE(1412), + [sym_binary_operator] = STATE(1412), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1412), + [sym_call] = STATE(1412), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1412), + [sym_stab_clause] = STATE(4196), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1412), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(786), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(788), + [sym_integer] = ACTIONS(788), + [sym_float] = ACTIONS(788), + [sym_char] = ACTIONS(788), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(788), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [89] = { + [sym__terminator] = STATE(117), + [sym__expression] = STATE(1660), + [sym_block] = STATE(1660), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1660), + [sym_nil] = STATE(1660), + [sym__atom] = STATE(1660), + [sym_quoted_atom] = STATE(1660), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1660), + [sym_charlist] = STATE(1660), + [sym_sigil] = STATE(1660), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1660), + [sym_tuple] = STATE(1660), + [sym_bitstring] = STATE(1660), + [sym_map] = STATE(1660), + [sym_unary_operator] = STATE(1660), + [sym_binary_operator] = STATE(1660), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1660), + [sym_call] = STATE(1660), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1660), + [sym_stab_clause] = STATE(4196), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1660), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(790), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(792), + [sym_integer] = ACTIONS(792), + [sym_float] = ACTIONS(792), + [sym_char] = ACTIONS(792), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [90] = { + [sym__terminator] = STATE(122), + [sym__expression] = STATE(1743), + [sym_block] = STATE(1743), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1743), + [sym_nil] = STATE(1743), + [sym__atom] = STATE(1743), + [sym_quoted_atom] = STATE(1743), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1743), + [sym_charlist] = STATE(1743), + [sym_sigil] = STATE(1743), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1743), + [sym_tuple] = STATE(1743), + [sym_bitstring] = STATE(1743), + [sym_map] = STATE(1743), + [sym_unary_operator] = STATE(1743), + [sym_binary_operator] = STATE(1743), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1743), + [sym_call] = STATE(1743), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1743), + [sym_stab_clause] = STATE(4204), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1743), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(796), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(798), + [sym_integer] = ACTIONS(798), + [sym_float] = ACTIONS(798), + [sym_char] = ACTIONS(798), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(798), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [91] = { + [sym__terminator] = STATE(124), + [sym__expression] = STATE(1654), + [sym_block] = STATE(1654), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1654), + [sym_nil] = STATE(1654), + [sym__atom] = STATE(1654), + [sym_quoted_atom] = STATE(1654), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1654), + [sym_charlist] = STATE(1654), + [sym_sigil] = STATE(1654), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1654), + [sym_tuple] = STATE(1654), + [sym_bitstring] = STATE(1654), + [sym_map] = STATE(1654), + [sym_unary_operator] = STATE(1654), + [sym_binary_operator] = STATE(1654), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1654), + [sym_call] = STATE(1654), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1654), + [sym_stab_clause] = STATE(4168), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1654), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(754), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(800), + [sym_integer] = ACTIONS(800), + [sym_float] = ACTIONS(800), + [sym_char] = ACTIONS(800), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(800), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [92] = { + [sym__terminator] = STATE(123), + [sym__expression] = STATE(1740), + [sym_block] = STATE(1740), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1740), + [sym_nil] = STATE(1740), + [sym__atom] = STATE(1740), + [sym_quoted_atom] = STATE(1740), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1740), + [sym_charlist] = STATE(1740), + [sym_sigil] = STATE(1740), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1740), + [sym_tuple] = STATE(1740), + [sym_bitstring] = STATE(1740), + [sym_map] = STATE(1740), + [sym_unary_operator] = STATE(1740), + [sym_binary_operator] = STATE(1740), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1740), + [sym_call] = STATE(1740), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1740), + [sym_stab_clause] = STATE(4197), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1740), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(802), + [sym_integer] = ACTIONS(802), + [sym_float] = ACTIONS(802), + [sym_char] = ACTIONS(802), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(802), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [93] = { + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1637), + [sym_block] = STATE(1637), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1637), + [sym_nil] = STATE(1637), + [sym__atom] = STATE(1637), + [sym_quoted_atom] = STATE(1637), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1637), + [sym_charlist] = STATE(1637), + [sym_sigil] = STATE(1637), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1637), + [sym_tuple] = STATE(1637), + [sym_bitstring] = STATE(1637), + [sym_map] = STATE(1637), + [sym_unary_operator] = STATE(1637), + [sym_binary_operator] = STATE(1637), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1637), + [sym_call] = STATE(1637), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1637), + [sym_stab_clause] = STATE(4172), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1637), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(806), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(808), + [sym_integer] = ACTIONS(808), + [sym_float] = ACTIONS(808), + [sym_char] = ACTIONS(808), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [94] = { + [sym__terminator] = STATE(122), + [sym__expression] = STATE(1745), + [sym_block] = STATE(1745), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1745), + [sym_nil] = STATE(1745), + [sym__atom] = STATE(1745), + [sym_quoted_atom] = STATE(1745), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1745), + [sym_charlist] = STATE(1745), + [sym_sigil] = STATE(1745), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1745), + [sym_tuple] = STATE(1745), + [sym_bitstring] = STATE(1745), + [sym_map] = STATE(1745), + [sym_unary_operator] = STATE(1745), + [sym_binary_operator] = STATE(1745), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1745), + [sym_call] = STATE(1745), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1745), + [sym_stab_clause] = STATE(4204), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1745), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(796), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(810), + [sym_integer] = ACTIONS(810), + [sym_float] = ACTIONS(810), + [sym_char] = ACTIONS(810), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [95] = { + [sym__terminator] = STATE(119), + [sym__expression] = STATE(1551), + [sym_block] = STATE(1551), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1551), + [sym_nil] = STATE(1551), + [sym__atom] = STATE(1551), + [sym_quoted_atom] = STATE(1551), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1551), + [sym_charlist] = STATE(1551), + [sym_sigil] = STATE(1551), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1551), + [sym_tuple] = STATE(1551), + [sym_bitstring] = STATE(1551), + [sym_map] = STATE(1551), + [sym_unary_operator] = STATE(1551), + [sym_binary_operator] = STATE(1551), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1551), + [sym_call] = STATE(1551), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1551), + [sym_stab_clause] = STATE(4143), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1551), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(760), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(812), + [sym_integer] = ACTIONS(812), + [sym_float] = ACTIONS(812), + [sym_char] = ACTIONS(812), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [96] = { + [sym__terminator] = STATE(117), + [sym__expression] = STATE(1552), + [sym_block] = STATE(1552), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1552), + [sym_nil] = STATE(1552), + [sym__atom] = STATE(1552), + [sym_quoted_atom] = STATE(1552), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1552), + [sym_charlist] = STATE(1552), + [sym_sigil] = STATE(1552), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1552), + [sym_tuple] = STATE(1552), + [sym_bitstring] = STATE(1552), + [sym_map] = STATE(1552), + [sym_unary_operator] = STATE(1552), + [sym_binary_operator] = STATE(1552), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1552), + [sym_call] = STATE(1552), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1552), + [sym_stab_clause] = STATE(4196), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1552), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(790), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(814), + [sym_integer] = ACTIONS(814), + [sym_float] = ACTIONS(814), + [sym_char] = ACTIONS(814), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [97] = { + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1647), + [sym_block] = STATE(1647), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1647), + [sym_nil] = STATE(1647), + [sym__atom] = STATE(1647), + [sym_quoted_atom] = STATE(1647), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1647), + [sym_charlist] = STATE(1647), + [sym_sigil] = STATE(1647), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1647), + [sym_tuple] = STATE(1647), + [sym_bitstring] = STATE(1647), + [sym_map] = STATE(1647), + [sym_unary_operator] = STATE(1647), + [sym_binary_operator] = STATE(1647), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1647), + [sym_call] = STATE(1647), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1647), + [sym_stab_clause] = STATE(4172), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1647), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(806), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(816), + [sym_integer] = ACTIONS(816), + [sym_float] = ACTIONS(816), + [sym_char] = ACTIONS(816), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(816), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [98] = { + [sym__terminator] = STATE(116), [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__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1767), + [sym_nil] = STATE(1767), + [sym__atom] = STATE(1767), + [sym_quoted_atom] = STATE(1767), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), [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_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), [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_unary_operator] = STATE(1767), + [sym_binary_operator] = STATE(1767), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = 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__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), [sym_access_call] = STATE(1767), + [sym_stab_clause] = STATE(4240), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), [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), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(766), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(818), + [sym_integer] = ACTIONS(818), + [sym_float] = ACTIONS(818), + [sym_char] = ACTIONS(818), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(757), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [1086] = { + [99] = { + [sym__terminator] = STATE(118), + [sym__expression] = STATE(1560), + [sym_block] = STATE(1560), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1560), + [sym_nil] = STATE(1560), + [sym__atom] = STATE(1560), + [sym_quoted_atom] = STATE(1560), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1560), + [sym_charlist] = STATE(1560), + [sym_sigil] = STATE(1560), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1560), + [sym_tuple] = STATE(1560), + [sym_bitstring] = STATE(1560), + [sym_map] = STATE(1560), + [sym_unary_operator] = STATE(1560), + [sym_binary_operator] = STATE(1560), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1560), + [sym_call] = STATE(1560), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1560), + [sym_stab_clause] = STATE(4189), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1560), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(748), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(820), + [sym_integer] = ACTIONS(820), + [sym_float] = ACTIONS(820), + [sym_char] = ACTIONS(820), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [100] = { + [sym__terminator] = STATE(135), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4173), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [101] = { + [sym__terminator] = STATE(134), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4264), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [102] = { + [sym__terminator] = STATE(132), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4244), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(872), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [103] = { + [sym__terminator] = STATE(130), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4235), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [104] = { + [sym__terminator] = STATE(131), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4171), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [105] = { + [sym__terminator] = STATE(125), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4167), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [106] = { + [sym__terminator] = STATE(126), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4145), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(880), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [107] = { + [sym__terminator] = STATE(137), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4152), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [108] = { + [sym__expression] = STATE(1873), + [sym_block] = STATE(1873), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1873), + [sym_nil] = STATE(1873), + [sym__atom] = STATE(1873), + [sym_quoted_atom] = STATE(1873), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1873), + [sym_charlist] = STATE(1873), + [sym_sigil] = STATE(1873), + [sym_keywords] = STATE(1879), + [sym_pair] = STATE(1870), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1873), + [sym_tuple] = STATE(1873), + [sym_bitstring] = STATE(1873), + [sym_map] = STATE(1873), + [sym_unary_operator] = STATE(1873), + [sym_binary_operator] = STATE(1873), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1873), + [sym_call] = STATE(1873), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym__call_arguments_with_parentheses_immediate] = STATE(1541), + [sym__call_arguments_without_parentheses] = STATE(1629), + [sym_do_block] = STATE(2344), + [sym_access_call] = STATE(1873), + [sym_anonymous_function] = STATE(1873), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(365), + [sym_integer] = ACTIONS(365), + [sym_float] = ACTIONS(365), + [sym_char] = ACTIONS(365), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(365), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(884), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(271), + [anon_sym_GT] = ACTIONS(271), + [anon_sym_PIPE] = ACTIONS(271), + [anon_sym_SLASH] = ACTIONS(271), + [anon_sym_TILDE] = ACTIONS(383), + [sym_keyword] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(271), + [anon_sym_BSLASH_BSLASH] = ACTIONS(271), + [anon_sym_when] = ACTIONS(271), + [anon_sym_COLON_COLON] = ACTIONS(271), + [anon_sym_EQ_GT] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(271), + [anon_sym_PIPE_PIPE] = ACTIONS(271), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(271), + [anon_sym_or] = ACTIONS(271), + [anon_sym_AMP_AMP] = ACTIONS(271), + [anon_sym_AMP_AMP_AMP] = ACTIONS(271), + [anon_sym_and] = ACTIONS(271), + [anon_sym_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ] = ACTIONS(271), + [anon_sym_EQ_TILDE] = ACTIONS(271), + [anon_sym_EQ_EQ_EQ] = ACTIONS(271), + [anon_sym_BANG_EQ_EQ] = ACTIONS(271), + [anon_sym_LT_EQ] = ACTIONS(271), + [anon_sym_GT_EQ] = ACTIONS(271), + [anon_sym_PIPE_GT] = ACTIONS(271), + [anon_sym_LT_LT_LT] = ACTIONS(271), + [anon_sym_GT_GT_GT] = ACTIONS(271), + [anon_sym_LT_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT_GT] = ACTIONS(271), + [anon_sym_LT_TILDE] = ACTIONS(271), + [anon_sym_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_TILDE_GT] = ACTIONS(271), + [anon_sym_LT_PIPE_GT] = ACTIONS(271), + [anon_sym_in] = ACTIONS(271), + [anon_sym_CARET_CARET_CARET] = ACTIONS(247), + [anon_sym_SLASH_SLASH] = ACTIONS(247), + [anon_sym_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH] = ACTIONS(271), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(271), + [anon_sym_DASH_DASH_DASH] = ACTIONS(271), + [anon_sym_DOT_DOT] = ACTIONS(271), + [anon_sym_LT_GT] = ACTIONS(271), + [anon_sym_STAR] = ACTIONS(271), + [anon_sym_STAR_STAR] = ACTIONS(271), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(271), + [anon_sym_do] = ACTIONS(405), + [anon_sym_fn] = ACTIONS(397), + [anon_sym_LPAREN2] = ACTIONS(399), + [anon_sym_LBRACK2] = ACTIONS(245), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(297), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [109] = { + [sym__terminator] = STATE(138), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4239), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [110] = { + [sym__terminator] = STATE(127), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4258), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [111] = { + [sym__terminator] = STATE(136), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4207), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [112] = { + [sym__terminator] = STATE(133), + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4251), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_repeat1] = STATE(1026), + [aux_sym__terminator_token1] = ACTIONS(698), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [113] = { + [sym__expression] = STATE(1721), + [sym_block] = STATE(1721), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1721), + [sym_nil] = STATE(1721), + [sym__atom] = STATE(1721), + [sym_quoted_atom] = STATE(1721), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1721), + [sym_charlist] = STATE(1721), + [sym_sigil] = STATE(1721), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1721), + [sym_tuple] = STATE(1721), + [sym_bitstring] = STATE(1721), + [sym_map] = STATE(1721), + [sym_unary_operator] = STATE(1721), + [sym_binary_operator] = STATE(1721), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1721), + [sym_call] = STATE(1721), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1721), + [sym_stab_clause] = STATE(4147), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1721), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [114] = { + [sym__expression] = STATE(1752), + [sym_block] = STATE(1752), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1752), + [sym_nil] = STATE(1752), + [sym__atom] = STATE(1752), + [sym_quoted_atom] = STATE(1752), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1752), + [sym_charlist] = STATE(1752), + [sym_sigil] = STATE(1752), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1752), + [sym_tuple] = STATE(1752), + [sym_bitstring] = STATE(1752), + [sym_map] = STATE(1752), + [sym_unary_operator] = STATE(1752), + [sym_binary_operator] = STATE(1752), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1752), + [sym_call] = STATE(1752), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1752), + [sym_stab_clause] = STATE(4158), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1752), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(898), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(900), + [sym_integer] = ACTIONS(900), + [sym_float] = ACTIONS(900), + [sym_char] = ACTIONS(900), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(900), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [115] = { + [sym__expression] = STATE(1636), + [sym_block] = STATE(1636), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1636), + [sym_nil] = STATE(1636), + [sym__atom] = STATE(1636), + [sym_quoted_atom] = STATE(1636), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1636), + [sym_charlist] = STATE(1636), + [sym_sigil] = STATE(1636), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1636), + [sym_tuple] = STATE(1636), + [sym_bitstring] = STATE(1636), + [sym_map] = STATE(1636), + [sym_unary_operator] = STATE(1636), + [sym_binary_operator] = STATE(1636), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1636), + [sym_call] = STATE(1636), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1636), + [sym_stab_clause] = STATE(4254), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1636), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(902), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(904), + [sym_integer] = ACTIONS(904), + [sym_float] = ACTIONS(904), + [sym_char] = ACTIONS(904), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(904), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [116] = { [sym__expression] = STATE(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__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1768), + [sym_nil] = STATE(1768), + [sym__atom] = STATE(1768), + [sym_quoted_atom] = STATE(1768), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), [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_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), [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_unary_operator] = STATE(1768), + [sym_binary_operator] = STATE(1768), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = 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__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), [sym_access_call] = STATE(1768), + [sym_stab_clause] = STATE(4257), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(906), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(908), + [sym_integer] = ACTIONS(908), + [sym_float] = ACTIONS(908), + [sym_char] = ACTIONS(908), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(757), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [117] = { + [sym__expression] = STATE(1648), + [sym_block] = STATE(1648), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1648), + [sym_nil] = STATE(1648), + [sym__atom] = STATE(1648), + [sym_quoted_atom] = STATE(1648), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1648), + [sym_charlist] = STATE(1648), + [sym_sigil] = STATE(1648), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1648), + [sym_tuple] = STATE(1648), + [sym_bitstring] = STATE(1648), + [sym_map] = STATE(1648), + [sym_unary_operator] = STATE(1648), + [sym_binary_operator] = STATE(1648), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1648), + [sym_call] = STATE(1648), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1648), + [sym_stab_clause] = STATE(4245), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1648), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(910), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(912), + [sym_integer] = ACTIONS(912), + [sym_float] = ACTIONS(912), + [sym_char] = ACTIONS(912), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(912), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(757), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [118] = { + [sym__expression] = STATE(1725), + [sym_block] = STATE(1725), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1725), + [sym_nil] = STATE(1725), + [sym__atom] = STATE(1725), + [sym_quoted_atom] = STATE(1725), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1725), + [sym_charlist] = STATE(1725), + [sym_sigil] = STATE(1725), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1725), + [sym_tuple] = STATE(1725), + [sym_bitstring] = STATE(1725), + [sym_map] = STATE(1725), + [sym_unary_operator] = STATE(1725), + [sym_binary_operator] = STATE(1725), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1725), + [sym_call] = STATE(1725), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1725), + [sym_stab_clause] = STATE(4266), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1725), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(914), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(916), + [sym_integer] = ACTIONS(916), + [sym_float] = ACTIONS(916), + [sym_char] = ACTIONS(916), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(916), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(757), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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] = { + [119] = { [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__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1663), + [sym_nil] = STATE(1663), + [sym__atom] = STATE(1663), + [sym_quoted_atom] = STATE(1663), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), [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_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), [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_unary_operator] = STATE(1663), + [sym_binary_operator] = STATE(1663), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = 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__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), [sym_access_call] = STATE(1663), + [sym_stab_clause] = STATE(4194), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(918), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(920), + [sym_integer] = ACTIONS(920), + [sym_float] = ACTIONS(920), + [sym_char] = ACTIONS(920), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(920), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(757), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [120] = { + [sym__expression] = STATE(1747), + [sym_block] = STATE(1747), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1747), + [sym_nil] = STATE(1747), + [sym__atom] = STATE(1747), + [sym_quoted_atom] = STATE(1747), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1747), + [sym_charlist] = STATE(1747), + [sym_sigil] = STATE(1747), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1747), + [sym_tuple] = STATE(1747), + [sym_bitstring] = STATE(1747), + [sym_map] = STATE(1747), + [sym_unary_operator] = STATE(1747), + [sym_binary_operator] = STATE(1747), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1747), + [sym_call] = STATE(1747), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1747), + [sym_stab_clause] = STATE(4246), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1747), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(922), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(924), + [sym_integer] = ACTIONS(924), + [sym_float] = ACTIONS(924), + [sym_char] = ACTIONS(924), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(924), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(895), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [121] = { + [sym__expression] = STATE(1662), + [sym_block] = STATE(1662), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1662), + [sym_nil] = STATE(1662), + [sym__atom] = STATE(1662), + [sym_quoted_atom] = STATE(1662), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1662), + [sym_charlist] = STATE(1662), + [sym_sigil] = STATE(1662), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1662), + [sym_tuple] = STATE(1662), + [sym_bitstring] = STATE(1662), + [sym_map] = STATE(1662), + [sym_unary_operator] = STATE(1662), + [sym_binary_operator] = STATE(1662), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1662), + [sym_call] = STATE(1662), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1662), + [sym_stab_clause] = STATE(4265), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1662), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(926), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(928), + [sym_integer] = ACTIONS(928), + [sym_float] = ACTIONS(928), + [sym_char] = ACTIONS(928), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(439), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(933), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [122] = { + [sym__expression] = STATE(1744), + [sym_block] = STATE(1744), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1744), + [sym_nil] = STATE(1744), + [sym__atom] = STATE(1744), + [sym_quoted_atom] = STATE(1744), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1744), + [sym_charlist] = STATE(1744), + [sym_sigil] = STATE(1744), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1744), + [sym_tuple] = STATE(1744), + [sym_bitstring] = STATE(1744), + [sym_map] = STATE(1744), + [sym_unary_operator] = STATE(1744), + [sym_binary_operator] = STATE(1744), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1744), + [sym_call] = STATE(1744), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1744), + [sym_stab_clause] = STATE(4208), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1744), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(930), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(932), + [sym_integer] = ACTIONS(932), + [sym_float] = ACTIONS(932), + [sym_char] = ACTIONS(932), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(439), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(933), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [123] = { + [sym__expression] = STATE(1556), + [sym_block] = STATE(1556), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1556), + [sym_nil] = STATE(1556), + [sym__atom] = STATE(1556), + [sym_quoted_atom] = STATE(1556), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1556), + [sym_charlist] = STATE(1556), + [sym_sigil] = STATE(1556), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1556), + [sym_tuple] = STATE(1556), + [sym_bitstring] = STATE(1556), + [sym_map] = STATE(1556), + [sym_unary_operator] = STATE(1556), + [sym_binary_operator] = STATE(1556), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1556), + [sym_call] = STATE(1556), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1556), + [sym_stab_clause] = STATE(4146), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1556), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(934), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(936), + [sym_integer] = ACTIONS(936), + [sym_float] = ACTIONS(936), + [sym_char] = ACTIONS(936), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(381), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1503), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [124] = { + [sym__expression] = STATE(1741), + [sym_block] = STATE(1741), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1741), + [sym_nil] = STATE(1741), + [sym__atom] = STATE(1741), + [sym_quoted_atom] = STATE(1741), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1741), + [sym_charlist] = STATE(1741), + [sym_sigil] = STATE(1741), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(1741), + [sym_tuple] = STATE(1741), + [sym_bitstring] = STATE(1741), + [sym_map] = STATE(1741), + [sym_unary_operator] = STATE(1741), + [sym_binary_operator] = STATE(1741), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1741), + [sym_call] = STATE(1741), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1741), + [sym_stab_clause] = STATE(4176), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(1741), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(65), + [anon_sym_RPAREN] = ACTIONS(938), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(940), + [sym_integer] = ACTIONS(940), + [sym_float] = ACTIONS(940), + [sym_char] = ACTIONS(940), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [125] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4229), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(381), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1503), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), }, - [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), + [126] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4150), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), }, - [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), + [127] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4256), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), }, - [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), + [128] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(3641), + [sym__stab_clause_left] = STATE(4854), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4854), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4854), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), }, - [1110] = { + [129] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(3641), + [sym__stab_clause_left] = STATE(4773), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4773), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4773), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(105), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [130] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4175), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [131] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4190), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [132] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4263), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [133] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4276), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [134] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4224), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [135] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4164), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [136] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4212), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [137] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4182), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [138] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4187), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [139] = { + [sym__expression] = STATE(3069), + [sym_block] = STATE(3069), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3069), + [sym_nil] = STATE(3069), + [sym__atom] = STATE(3069), + [sym_quoted_atom] = STATE(3069), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3069), + [sym_charlist] = STATE(3069), + [sym_sigil] = STATE(3069), + [sym_keywords] = STATE(4705), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3069), + [sym_tuple] = STATE(3069), + [sym_bitstring] = STATE(3069), + [sym_map] = STATE(3069), + [sym_unary_operator] = STATE(3069), + [sym_binary_operator] = STATE(3069), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3069), + [sym_call] = STATE(3069), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3069), + [sym_stab_clause] = STATE(4758), + [sym__stab_clause_left] = STATE(4840), + [sym__stab_clause_arguments_with_parentheses] = STATE(4714), + [sym__stab_clause_arguments_without_parentheses] = STATE(4717), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(4840), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(4840), + [sym_anonymous_function] = STATE(3069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(824), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(832), + [sym_integer] = ACTIONS(832), + [sym_float] = ACTIONS(832), + [sym_char] = ACTIONS(832), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(862), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [140] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3536), + [sym_rescue_block] = STATE(3536), + [sym_catch_block] = STATE(3536), + [sym_else_block] = STATE(3536), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3536), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(976), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [141] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3508), + [sym_rescue_block] = STATE(3508), + [sym_catch_block] = STATE(3508), + [sym_else_block] = STATE(3508), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3508), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(984), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [142] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3520), + [sym_rescue_block] = STATE(3520), + [sym_catch_block] = STATE(3520), + [sym_else_block] = STATE(3520), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3520), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(986), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [143] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3541), + [sym_rescue_block] = STATE(3541), + [sym_catch_block] = STATE(3541), + [sym_else_block] = STATE(3541), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3541), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(988), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [144] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3524), + [sym_rescue_block] = STATE(3524), + [sym_catch_block] = STATE(3524), + [sym_else_block] = STATE(3524), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3524), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [145] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3538), + [sym_rescue_block] = STATE(3538), + [sym_catch_block] = STATE(3538), + [sym_else_block] = STATE(3538), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3538), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(992), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [146] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3526), + [sym_rescue_block] = STATE(3526), + [sym_catch_block] = STATE(3526), + [sym_else_block] = STATE(3526), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3526), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(994), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [147] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3527), + [sym_rescue_block] = STATE(3527), + [sym_catch_block] = STATE(3527), + [sym_else_block] = STATE(3527), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3527), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(996), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [148] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3528), + [sym_rescue_block] = STATE(3528), + [sym_catch_block] = STATE(3528), + [sym_else_block] = STATE(3528), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3528), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(998), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [149] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3533), + [sym_rescue_block] = STATE(3533), + [sym_catch_block] = STATE(3533), + [sym_else_block] = STATE(3533), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3533), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1000), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [150] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3534), + [sym_rescue_block] = STATE(3534), + [sym_catch_block] = STATE(3534), + [sym_else_block] = STATE(3534), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3534), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1002), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [151] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3545), + [sym_rescue_block] = STATE(3545), + [sym_catch_block] = STATE(3545), + [sym_else_block] = STATE(3545), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3545), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1004), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [152] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3535), + [sym_rescue_block] = STATE(3535), + [sym_catch_block] = STATE(3535), + [sym_else_block] = STATE(3535), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3535), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1006), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [153] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3539), + [sym_rescue_block] = STATE(3539), + [sym_catch_block] = STATE(3539), + [sym_else_block] = STATE(3539), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3539), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1008), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [154] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3542), + [sym_rescue_block] = STATE(3542), + [sym_catch_block] = STATE(3542), + [sym_else_block] = STATE(3542), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3542), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1010), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [155] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3537), + [sym_rescue_block] = STATE(3537), + [sym_catch_block] = STATE(3537), + [sym_else_block] = STATE(3537), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3537), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1012), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [156] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3512), + [sym_rescue_block] = STATE(3512), + [sym_catch_block] = STATE(3512), + [sym_else_block] = STATE(3512), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3512), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1014), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [157] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3550), + [sym_rescue_block] = STATE(3550), + [sym_catch_block] = STATE(3550), + [sym_else_block] = STATE(3550), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3550), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1016), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [158] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3509), + [sym_rescue_block] = STATE(3509), + [sym_catch_block] = STATE(3509), + [sym_else_block] = STATE(3509), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3509), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1018), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [159] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3523), + [sym_rescue_block] = STATE(3523), + [sym_catch_block] = STATE(3523), + [sym_else_block] = STATE(3523), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3523), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1020), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [160] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3544), + [sym_rescue_block] = STATE(3544), + [sym_catch_block] = STATE(3544), + [sym_else_block] = STATE(3544), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3544), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1022), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [161] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3548), + [sym_rescue_block] = STATE(3548), + [sym_catch_block] = STATE(3548), + [sym_else_block] = STATE(3548), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3548), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1024), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [162] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3507), + [sym_rescue_block] = STATE(3507), + [sym_catch_block] = STATE(3507), + [sym_else_block] = STATE(3507), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3507), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1026), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [163] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3530), + [sym_rescue_block] = STATE(3530), + [sym_catch_block] = STATE(3530), + [sym_else_block] = STATE(3530), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3530), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [164] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3531), + [sym_rescue_block] = STATE(3531), + [sym_catch_block] = STATE(3531), + [sym_else_block] = STATE(3531), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3531), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1030), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [165] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3552), + [sym_rescue_block] = STATE(3552), + [sym_catch_block] = STATE(3552), + [sym_else_block] = STATE(3552), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3552), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [166] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3561), + [sym_rescue_block] = STATE(3561), + [sym_catch_block] = STATE(3561), + [sym_else_block] = STATE(3561), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3561), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1034), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [167] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3563), + [sym_rescue_block] = STATE(3563), + [sym_catch_block] = STATE(3563), + [sym_else_block] = STATE(3563), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3563), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1036), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [168] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3525), + [sym_rescue_block] = STATE(3525), + [sym_catch_block] = STATE(3525), + [sym_else_block] = STATE(3525), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3525), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1038), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [169] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3532), + [sym_rescue_block] = STATE(3532), + [sym_catch_block] = STATE(3532), + [sym_else_block] = STATE(3532), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3532), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1040), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [170] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3556), + [sym_rescue_block] = STATE(3556), + [sym_catch_block] = STATE(3556), + [sym_else_block] = STATE(3556), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3556), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1042), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [171] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3554), + [sym_rescue_block] = STATE(3554), + [sym_catch_block] = STATE(3554), + [sym_else_block] = STATE(3554), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3554), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1044), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [172] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3529), + [sym_rescue_block] = STATE(3529), + [sym_catch_block] = STATE(3529), + [sym_else_block] = STATE(3529), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3529), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [173] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3564), + [sym_rescue_block] = STATE(3564), + [sym_catch_block] = STATE(3564), + [sym_else_block] = STATE(3564), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3564), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1048), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [174] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3505), + [sym_rescue_block] = STATE(3505), + [sym_catch_block] = STATE(3505), + [sym_else_block] = STATE(3505), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3505), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1050), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [175] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_after_block] = STATE(3543), + [sym_rescue_block] = STATE(3543), + [sym_catch_block] = STATE(3543), + [sym_else_block] = STATE(3543), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym_do_block_repeat1] = STATE(3543), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1052), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [176] = { + [sym__terminator] = STATE(780), + [sym__expression] = STATE(1508), + [sym_block] = STATE(1508), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1508), + [sym_nil] = STATE(1508), + [sym__atom] = STATE(1508), + [sym_quoted_atom] = STATE(1508), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1508), + [sym_charlist] = STATE(1508), + [sym_sigil] = STATE(1508), + [sym_list] = STATE(1508), + [sym_tuple] = STATE(1508), + [sym_bitstring] = STATE(1508), + [sym_map] = STATE(1508), + [sym_unary_operator] = STATE(1508), + [sym_binary_operator] = STATE(1508), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1508), + [sym_call] = STATE(1508), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1508), + [sym_body] = STATE(3640), + [sym_anonymous_function] = STATE(1508), + [aux_sym__terminator_repeat1] = STATE(1029), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1058), + [sym_integer] = ACTIONS(1058), + [sym_float] = ACTIONS(1058), + [sym_char] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1063), + [anon_sym_catch] = ACTIONS(1063), + [anon_sym_else] = ACTIONS(1063), + [anon_sym_end] = ACTIONS(1063), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1063), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [177] = { + [sym__terminator] = STATE(780), + [sym__expression] = STATE(1508), + [sym_block] = STATE(1508), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1508), + [sym_nil] = STATE(1508), + [sym__atom] = STATE(1508), + [sym_quoted_atom] = STATE(1508), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1508), + [sym_charlist] = STATE(1508), + [sym_sigil] = STATE(1508), + [sym_list] = STATE(1508), + [sym_tuple] = STATE(1508), + [sym_bitstring] = STATE(1508), + [sym_map] = STATE(1508), + [sym_unary_operator] = STATE(1508), + [sym_binary_operator] = STATE(1508), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1508), + [sym_call] = STATE(1508), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1508), + [sym_body] = STATE(3643), + [sym_anonymous_function] = STATE(1508), + [aux_sym__terminator_repeat1] = STATE(1029), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1058), + [sym_integer] = ACTIONS(1058), + [sym_float] = ACTIONS(1058), + [sym_char] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1065), + [anon_sym_catch] = ACTIONS(1065), + [anon_sym_else] = ACTIONS(1065), + [anon_sym_end] = ACTIONS(1065), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1065), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [178] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4791), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4791), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1069), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [179] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4769), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [180] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4828), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1147), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [181] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4869), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [182] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4857), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4857), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1165), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [183] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4880), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4880), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1167), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [184] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4860), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [185] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4804), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4804), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1171), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [186] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4852), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1173), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [187] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4851), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [188] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4850), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1177), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [189] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4846), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1179), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [190] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4771), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [191] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4816), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [192] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4837), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4837), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1185), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [193] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4818), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1187), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [194] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4835), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [195] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4811), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4811), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1191), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [196] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4832), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [197] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4810), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [198] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4826), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1197), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [199] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4871), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [200] = { + [sym__expression] = STATE(2885), + [sym_block] = STATE(2885), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2885), + [sym_nil] = STATE(2885), + [sym__atom] = STATE(2885), + [sym_quoted_atom] = STATE(2885), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2885), + [sym_charlist] = STATE(2885), + [sym_sigil] = STATE(2885), + [sym__keywords_with_trailing_separator] = STATE(4681), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_bitstring] = STATE(2885), + [sym_map] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_binary_operator] = STATE(2885), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2885), + [sym_call] = STATE(2885), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2885), + [sym_anonymous_function] = STATE(2885), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1201), + [sym_integer] = ACTIONS(1201), + [sym_float] = ACTIONS(1201), + [sym_char] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [201] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4800), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [202] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4853), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [203] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4844), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [204] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4842), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [205] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4838), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1213), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [206] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4797), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1215), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [207] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4822), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [208] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4796), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [209] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4765), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [210] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4785), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [211] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4764), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4764), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1225), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [212] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4770), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4770), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1227), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [213] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4870), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [214] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4767), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4767), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1231), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [215] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4867), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [216] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4787), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1235), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [217] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4866), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [218] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4845), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [219] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4768), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [220] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4824), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [221] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4786), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4786), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1245), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [222] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4783), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [223] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4830), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [224] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4802), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [225] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4774), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [226] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4775), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [227] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4777), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [228] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4788), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4788), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1259), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [229] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4865), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1261), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [230] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4763), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1263), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [231] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4776), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4776), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1265), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [232] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4872), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [233] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4792), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [234] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4808), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4808), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1271), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [235] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4873), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [236] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4819), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1275), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [237] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4772), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [238] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4762), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [239] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4782), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [240] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4843), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1283), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [241] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4780), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [242] = { + [sym__expression] = STATE(2885), + [sym_block] = STATE(2885), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2885), + [sym_nil] = STATE(2885), + [sym__atom] = STATE(2885), + [sym_quoted_atom] = STATE(2885), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2885), + [sym_charlist] = STATE(2885), + [sym_sigil] = STATE(2885), + [sym__keywords_with_trailing_separator] = STATE(4677), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_bitstring] = STATE(2885), + [sym_map] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_binary_operator] = STATE(2885), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2885), + [sym_call] = STATE(2885), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2885), + [sym_anonymous_function] = STATE(2885), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1201), + [sym_integer] = ACTIONS(1201), + [sym_float] = ACTIONS(1201), + [sym_char] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1287), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [243] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4858), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4858), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1289), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [244] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4795), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4795), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1291), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [245] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4798), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1293), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [246] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4827), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [247] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4805), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1297), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [248] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4806), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [249] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4834), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4834), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1301), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [250] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4848), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [251] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4861), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1305), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [252] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4793), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [253] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4814), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4814), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1309), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [254] = { + [sym__expression] = STATE(3154), + [sym_block] = STATE(3154), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3154), + [sym_nil] = STATE(3154), + [sym__atom] = STATE(3154), + [sym_quoted_atom] = STATE(3154), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3154), + [sym_charlist] = STATE(3154), + [sym_sigil] = STATE(3154), + [sym__keywords_with_trailing_separator] = STATE(4887), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(3154), + [sym_tuple] = STATE(3154), + [sym_bitstring] = STATE(3154), + [sym_map] = STATE(3154), + [sym_unary_operator] = STATE(3154), + [sym_binary_operator] = STATE(3154), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3154), + [sym_call] = STATE(3154), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym__call_arguments_with_trailing_separator] = STATE(4887), + [sym_access_call] = STATE(3154), + [sym_anonymous_function] = STATE(3154), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [anon_sym_RPAREN] = ACTIONS(1311), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1073), + [sym_integer] = ACTIONS(1073), + [sym_float] = ACTIONS(1073), + [sym_char] = ACTIONS(1073), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1073), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [255] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4884), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [256] = { + [sym__expression] = STATE(3059), + [sym_block] = STATE(3059), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3059), + [sym_nil] = STATE(3059), + [sym__atom] = STATE(3059), + [sym_quoted_atom] = STATE(3059), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3059), + [sym_charlist] = STATE(3059), + [sym_sigil] = STATE(3059), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3059), + [sym_tuple] = STATE(3059), + [sym_bitstring] = STATE(3059), + [sym_map] = STATE(3059), + [sym__items_with_trailing_separator] = STATE(4882), + [sym_unary_operator] = STATE(3059), + [sym_binary_operator] = STATE(3059), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3059), + [sym_call] = STATE(3059), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3059), + [sym_anonymous_function] = STATE(3059), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1123), + [sym_integer] = ACTIONS(1123), + [sym_float] = ACTIONS(1123), + [sym_char] = ACTIONS(1123), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [257] = { + [sym__expression] = STATE(2994), + [sym_block] = STATE(2994), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2994), + [sym_nil] = STATE(2994), + [sym__atom] = STATE(2994), + [sym_quoted_atom] = STATE(2994), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2994), + [sym_charlist] = STATE(2994), + [sym_sigil] = STATE(2994), + [sym__keywords_with_trailing_separator] = STATE(4680), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2994), + [sym_tuple] = STATE(2994), + [sym_bitstring] = STATE(2994), + [sym_map] = STATE(2994), + [sym__items_with_trailing_separator] = STATE(4883), + [sym_unary_operator] = STATE(2994), + [sym_binary_operator] = STATE(2994), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2994), + [sym_call] = STATE(2994), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2994), + [sym_anonymous_function] = STATE(2994), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1111), + [sym_integer] = ACTIONS(1111), + [sym_float] = ACTIONS(1111), + [sym_char] = ACTIONS(1111), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_RBRACK] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [258] = { + [sym__expression] = STATE(2006), + [sym_block] = STATE(2006), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2006), + [sym_nil] = STATE(2006), + [sym__atom] = STATE(2006), + [sym_quoted_atom] = STATE(2006), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2006), + [sym_charlist] = STATE(2006), + [sym_sigil] = STATE(2006), + [sym_list] = STATE(2006), + [sym_tuple] = STATE(2006), + [sym_bitstring] = STATE(2006), + [sym_map] = STATE(2006), + [sym_unary_operator] = STATE(2006), + [sym_binary_operator] = STATE(2006), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2006), + [sym_call] = STATE(2006), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2006), + [sym_anonymous_function] = STATE(2006), + [aux_sym__terminator_token1] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_char] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1321), + [anon_sym_catch] = ACTIONS(1321), + [anon_sym_else] = ACTIONS(1321), + [anon_sym_end] = ACTIONS(1321), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1321), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [259] = { + [sym__expression] = STATE(2006), + [sym_block] = STATE(2006), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2006), + [sym_nil] = STATE(2006), + [sym__atom] = STATE(2006), + [sym_quoted_atom] = STATE(2006), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2006), + [sym_charlist] = STATE(2006), + [sym_sigil] = STATE(2006), + [sym_list] = STATE(2006), + [sym_tuple] = STATE(2006), + [sym_bitstring] = STATE(2006), + [sym_map] = STATE(2006), + [sym_unary_operator] = STATE(2006), + [sym_binary_operator] = STATE(2006), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2006), + [sym_call] = STATE(2006), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2006), + [sym_anonymous_function] = STATE(2006), + [aux_sym__terminator_token1] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_char] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1327), + [anon_sym_catch] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1327), + [anon_sym_end] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1327), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [260] = { + [sym__expression] = STATE(2006), + [sym_block] = STATE(2006), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2006), + [sym_nil] = STATE(2006), + [sym__atom] = STATE(2006), + [sym_quoted_atom] = STATE(2006), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2006), + [sym_charlist] = STATE(2006), + [sym_sigil] = STATE(2006), + [sym_list] = STATE(2006), + [sym_tuple] = STATE(2006), + [sym_bitstring] = STATE(2006), + [sym_map] = STATE(2006), + [sym_unary_operator] = STATE(2006), + [sym_binary_operator] = STATE(2006), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2006), + [sym_call] = STATE(2006), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2006), + [sym_anonymous_function] = STATE(2006), + [aux_sym__terminator_token1] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_char] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1331), + [anon_sym_catch] = ACTIONS(1331), + [anon_sym_else] = ACTIONS(1331), + [anon_sym_end] = ACTIONS(1331), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1331), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [261] = { + [sym__expression] = STATE(3346), + [sym_block] = STATE(3346), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3346), + [sym_nil] = STATE(3346), + [sym__atom] = STATE(3346), + [sym_quoted_atom] = STATE(3346), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3346), + [sym_charlist] = STATE(3346), + [sym_sigil] = STATE(3346), + [sym__keywords_with_trailing_separator] = STATE(4677), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3346), + [sym_tuple] = STATE(3346), + [sym_bitstring] = STATE(3346), + [sym_map] = STATE(3346), + [sym_unary_operator] = STATE(3346), + [sym_binary_operator] = STATE(3346), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3346), + [sym_call] = STATE(3346), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3346), + [sym_anonymous_function] = STATE(3346), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1333), + [sym_char] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1287), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [262] = { + [sym__expression] = STATE(3346), + [sym_block] = STATE(3346), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3346), + [sym_nil] = STATE(3346), + [sym__atom] = STATE(3346), + [sym_quoted_atom] = STATE(3346), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3346), + [sym_charlist] = STATE(3346), + [sym_sigil] = STATE(3346), + [sym__keywords_with_trailing_separator] = STATE(4681), + [sym_pair] = STATE(4673), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3346), + [sym_tuple] = STATE(3346), + [sym_bitstring] = STATE(3346), + [sym_map] = STATE(3346), + [sym_unary_operator] = STATE(3346), + [sym_binary_operator] = STATE(3346), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3346), + [sym_call] = STATE(3346), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3346), + [sym_anonymous_function] = STATE(3346), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1333), + [sym_char] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_GT_GT] = ACTIONS(1203), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [263] = { + [sym__expression] = STATE(1901), + [sym_block] = STATE(1901), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1901), + [sym_nil] = STATE(1901), + [sym__atom] = STATE(1901), + [sym_quoted_atom] = STATE(1901), + [sym__quoted_i_double] = STATE(1409), + [sym__quoted_i_single] = STATE(1408), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1901), + [sym_charlist] = STATE(1901), + [sym_sigil] = STATE(1901), + [sym_keywords] = STATE(1667), + [sym_pair] = STATE(1706), + [sym__keyword] = STATE(862), + [sym_quoted_keyword] = STATE(862), + [sym_list] = STATE(1901), + [sym_tuple] = STATE(1901), + [sym_bitstring] = STATE(1901), + [sym_map] = STATE(1901), + [sym_unary_operator] = STATE(1901), + [sym_binary_operator] = STATE(1901), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1901), + [sym_call] = STATE(1901), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1901), + [sym_anonymous_function] = STATE(1901), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1335), + [sym_integer] = ACTIONS(1335), + [sym_float] = ACTIONS(1335), + [sym_char] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [sym_keyword] = ACTIONS(1337), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [264] = { + [sym__expression] = STATE(2933), + [sym_block] = STATE(2933), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2933), + [sym_nil] = STATE(2933), + [sym__atom] = STATE(2933), + [sym_quoted_atom] = STATE(2933), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2933), + [sym_charlist] = STATE(2933), + [sym_sigil] = STATE(2933), + [sym_keywords] = STATE(1891), + [sym_pair] = STATE(2646), + [sym__keyword] = STATE(836), + [sym_quoted_keyword] = STATE(836), + [sym_list] = STATE(2933), + [sym_tuple] = STATE(2933), + [sym_bitstring] = STATE(2933), + [sym_map] = STATE(2933), + [sym_unary_operator] = STATE(2933), + [sym_binary_operator] = STATE(2933), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2933), + [sym_call] = STATE(2933), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2933), + [sym_anonymous_function] = STATE(2933), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1339), + [sym_integer] = ACTIONS(1339), + [sym_float] = ACTIONS(1339), + [sym_char] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [sym_keyword] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [265] = { + [sym__expression] = STATE(2319), + [sym_block] = STATE(2319), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2319), + [sym_nil] = STATE(2319), + [sym__atom] = STATE(2319), + [sym_quoted_atom] = STATE(2319), + [sym__quoted_i_double] = STATE(1958), + [sym__quoted_i_single] = STATE(1961), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2319), + [sym_charlist] = STATE(2319), + [sym_sigil] = STATE(2319), + [sym_keywords] = STATE(2388), + [sym_pair] = STATE(2141), + [sym__keyword] = STATE(460), + [sym_quoted_keyword] = STATE(460), + [sym_list] = STATE(2319), + [sym_tuple] = STATE(2319), + [sym_bitstring] = STATE(2319), + [sym_map] = STATE(2319), + [sym_unary_operator] = STATE(2319), + [sym_binary_operator] = STATE(2319), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2319), + [sym_call] = STATE(2319), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2319), + [sym_anonymous_function] = STATE(2319), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1341), + [sym_integer] = ACTIONS(1341), + [sym_float] = ACTIONS(1341), + [sym_char] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [266] = { + [sym__expression] = STATE(2933), + [sym_block] = STATE(2933), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2933), + [sym_nil] = STATE(2933), + [sym__atom] = STATE(2933), + [sym_quoted_atom] = STATE(2933), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2933), + [sym_charlist] = STATE(2933), + [sym_sigil] = STATE(2933), + [sym_keywords] = STATE(1856), + [sym_pair] = STATE(2646), + [sym__keyword] = STATE(836), + [sym_quoted_keyword] = STATE(836), + [sym_list] = STATE(2933), + [sym_tuple] = STATE(2933), + [sym_bitstring] = STATE(2933), + [sym_map] = STATE(2933), + [sym_unary_operator] = STATE(2933), + [sym_binary_operator] = STATE(2933), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2933), + [sym_call] = STATE(2933), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2933), + [sym_anonymous_function] = STATE(2933), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1339), + [sym_integer] = ACTIONS(1339), + [sym_float] = ACTIONS(1339), + [sym_char] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [sym_keyword] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [267] = { + [sym__expression] = STATE(2885), + [sym_block] = STATE(2885), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2885), + [sym_nil] = STATE(2885), + [sym__atom] = STATE(2885), + [sym_quoted_atom] = STATE(2885), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2885), + [sym_charlist] = STATE(2885), + [sym_sigil] = STATE(2885), + [sym__keywords_with_trailing_separator] = STATE(4875), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_bitstring] = STATE(2885), + [sym_map] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_binary_operator] = STATE(2885), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2885), + [sym_call] = STATE(2885), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2885), + [sym_anonymous_function] = STATE(2885), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1201), + [sym_integer] = ACTIONS(1201), + [sym_float] = ACTIONS(1201), + [sym_char] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [268] = { + [sym__expression] = STATE(2515), + [sym_block] = STATE(2515), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2515), + [sym_nil] = STATE(2515), + [sym__atom] = STATE(2515), + [sym_quoted_atom] = STATE(2515), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2515), + [sym_charlist] = STATE(2515), + [sym_sigil] = STATE(2515), + [sym_keywords] = STATE(1256), + [sym_pair] = STATE(2118), + [sym__keyword] = STATE(598), + [sym_quoted_keyword] = STATE(598), + [sym_list] = STATE(2515), + [sym_tuple] = STATE(2515), + [sym_bitstring] = STATE(2515), + [sym_map] = STATE(2515), + [sym_unary_operator] = STATE(2515), + [sym_binary_operator] = STATE(2515), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2515), + [sym_call] = STATE(2515), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2515), + [sym_anonymous_function] = STATE(2515), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1343), + [sym_integer] = ACTIONS(1343), + [sym_float] = ACTIONS(1343), + [sym_char] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [sym_keyword] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [269] = { + [sym__expression] = STATE(2943), + [sym_block] = STATE(2943), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2943), + [sym_nil] = STATE(2943), + [sym__atom] = STATE(2943), + [sym_quoted_atom] = STATE(2943), + [sym__quoted_i_double] = STATE(2482), + [sym__quoted_i_single] = STATE(2485), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2943), + [sym_charlist] = STATE(2943), + [sym_sigil] = STATE(2943), + [sym_keywords] = STATE(2942), + [sym_pair] = STATE(2589), + [sym__keyword] = STATE(541), + [sym_quoted_keyword] = STATE(541), + [sym_list] = STATE(2943), + [sym_tuple] = STATE(2943), + [sym_bitstring] = STATE(2943), + [sym_map] = STATE(2943), + [sym_unary_operator] = STATE(2943), + [sym_binary_operator] = STATE(2943), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2943), + [sym_call] = STATE(2943), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2943), + [sym_anonymous_function] = STATE(2943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1345), + [sym_integer] = ACTIONS(1345), + [sym_float] = ACTIONS(1345), + [sym_char] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [270] = { + [sym__expression] = STATE(2343), + [sym_block] = STATE(2343), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2343), + [sym_nil] = STATE(2343), + [sym__atom] = STATE(2343), + [sym_quoted_atom] = STATE(2343), + [sym__quoted_i_double] = STATE(2009), + [sym__quoted_i_single] = STATE(2010), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2343), + [sym_charlist] = STATE(2343), + [sym_sigil] = STATE(2343), + [sym_keywords] = STATE(2597), + [sym_pair] = STATE(2014), + [sym__keyword] = STATE(813), + [sym_quoted_keyword] = STATE(813), + [sym_list] = STATE(2343), + [sym_tuple] = STATE(2343), + [sym_bitstring] = STATE(2343), + [sym_map] = STATE(2343), + [sym_unary_operator] = STATE(2343), + [sym_binary_operator] = STATE(2343), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2343), + [sym_call] = STATE(2343), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2343), + [sym_anonymous_function] = STATE(2343), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1347), + [sym_integer] = ACTIONS(1347), + [sym_float] = ACTIONS(1347), + [sym_char] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [271] = { + [sym__expression] = STATE(1707), + [sym_block] = STATE(1707), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1707), + [sym_nil] = STATE(1707), + [sym__atom] = STATE(1707), + [sym_quoted_atom] = STATE(1707), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1707), + [sym_charlist] = STATE(1707), + [sym_sigil] = STATE(1707), + [sym_keywords] = STATE(1512), + [sym_pair] = STATE(1405), + [sym__keyword] = STATE(871), + [sym_quoted_keyword] = STATE(871), + [sym_list] = STATE(1707), + [sym_tuple] = STATE(1707), + [sym_bitstring] = STATE(1707), + [sym_map] = STATE(1707), + [sym_unary_operator] = STATE(1707), + [sym_binary_operator] = STATE(1707), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1707), + [sym_call] = STATE(1707), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1707), + [sym_anonymous_function] = STATE(1707), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1351), + [sym_integer] = ACTIONS(1351), + [sym_float] = ACTIONS(1351), + [sym_char] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [272] = { + [sym__expression] = STATE(2954), + [sym_block] = STATE(2954), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2954), + [sym_nil] = STATE(2954), + [sym__atom] = STATE(2954), + [sym_quoted_atom] = STATE(2954), + [sym__quoted_i_double] = STATE(2482), + [sym__quoted_i_single] = STATE(2485), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2954), + [sym_charlist] = STATE(2954), + [sym_sigil] = STATE(2954), + [sym_keywords] = STATE(2949), + [sym_pair] = STATE(2589), + [sym__keyword] = STATE(541), + [sym_quoted_keyword] = STATE(541), + [sym_list] = STATE(2954), + [sym_tuple] = STATE(2954), + [sym_bitstring] = STATE(2954), + [sym_map] = STATE(2954), + [sym_unary_operator] = STATE(2954), + [sym_binary_operator] = STATE(2954), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2954), + [sym_call] = STATE(2954), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2954), + [sym_anonymous_function] = STATE(2954), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1355), + [sym_integer] = ACTIONS(1355), + [sym_float] = ACTIONS(1355), + [sym_char] = ACTIONS(1355), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1355), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [273] = { + [sym__expression] = STATE(1718), + [sym_block] = STATE(1718), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1718), + [sym_nil] = STATE(1718), + [sym__atom] = STATE(1718), + [sym_quoted_atom] = STATE(1718), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1718), + [sym_charlist] = STATE(1718), + [sym_sigil] = STATE(1718), + [sym_keywords] = STATE(1544), + [sym_pair] = STATE(1405), + [sym__keyword] = STATE(871), + [sym_quoted_keyword] = STATE(871), + [sym_list] = STATE(1718), + [sym_tuple] = STATE(1718), + [sym_bitstring] = STATE(1718), + [sym_map] = STATE(1718), + [sym_unary_operator] = STATE(1718), + [sym_binary_operator] = STATE(1718), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1718), + [sym_call] = STATE(1718), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1718), + [sym_anonymous_function] = STATE(1718), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1357), + [sym_integer] = ACTIONS(1357), + [sym_float] = ACTIONS(1357), + [sym_char] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [sym_keyword] = ACTIONS(1353), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [274] = { + [sym__expression] = STATE(2095), + [sym_block] = STATE(2095), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(2095), + [sym_nil] = STATE(2095), + [sym__atom] = STATE(2095), + [sym_quoted_atom] = STATE(2095), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2095), + [sym_charlist] = STATE(2095), + [sym_sigil] = STATE(2095), + [sym_keywords] = STATE(1856), + [sym_pair] = STATE(1870), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(2095), + [sym_tuple] = STATE(2095), + [sym_bitstring] = STATE(2095), + [sym_map] = STATE(2095), + [sym_unary_operator] = STATE(2095), + [sym_binary_operator] = STATE(2095), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2095), + [sym_call] = STATE(2095), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2095), + [sym_anonymous_function] = STATE(2095), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1359), + [sym_integer] = ACTIONS(1359), + [sym_float] = ACTIONS(1359), + [sym_char] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [sym_keyword] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [275] = { + [sym__expression] = STATE(3218), + [sym_block] = STATE(3218), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3218), + [sym_nil] = STATE(3218), + [sym__atom] = STATE(3218), + [sym_quoted_atom] = STATE(3218), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3218), + [sym_charlist] = STATE(3218), + [sym_sigil] = STATE(3218), + [sym_keywords] = STATE(3217), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3218), + [sym_tuple] = STATE(3218), + [sym_bitstring] = STATE(3218), + [sym_map] = STATE(3218), + [sym_unary_operator] = STATE(3218), + [sym_binary_operator] = STATE(3218), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3218), + [sym_call] = STATE(3218), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3218), + [sym_anonymous_function] = STATE(3218), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1363), + [sym_integer] = ACTIONS(1363), + [sym_float] = ACTIONS(1363), + [sym_char] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [276] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1365), + [anon_sym_catch] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(1365), + [anon_sym_end] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1365), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [277] = { + [sym__expression] = STATE(1951), + [sym_block] = STATE(1951), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1951), + [sym_nil] = STATE(1951), + [sym__atom] = STATE(1951), + [sym_quoted_atom] = STATE(1951), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1951), + [sym_charlist] = STATE(1951), + [sym_sigil] = STATE(1951), + [sym_keywords] = STATE(1832), + [sym_pair] = STATE(1870), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1951), + [sym_tuple] = STATE(1951), + [sym_bitstring] = STATE(1951), + [sym_map] = STATE(1951), + [sym_unary_operator] = STATE(1951), + [sym_binary_operator] = STATE(1951), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1951), + [sym_call] = STATE(1951), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1951), + [sym_anonymous_function] = STATE(1951), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1367), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1367), + [sym_char] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [sym_keyword] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [278] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1369), + [anon_sym_catch] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1369), + [anon_sym_end] = ACTIONS(1369), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1369), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [279] = { + [sym__expression] = STATE(2095), + [sym_block] = STATE(2095), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(2095), + [sym_nil] = STATE(2095), + [sym__atom] = STATE(2095), + [sym_quoted_atom] = STATE(2095), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2095), + [sym_charlist] = STATE(2095), + [sym_sigil] = STATE(2095), + [sym_keywords] = STATE(1891), + [sym_pair] = STATE(1870), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(2095), + [sym_tuple] = STATE(2095), + [sym_bitstring] = STATE(2095), + [sym_map] = STATE(2095), + [sym_unary_operator] = STATE(2095), + [sym_binary_operator] = STATE(2095), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2095), + [sym_call] = STATE(2095), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2095), + [sym_anonymous_function] = STATE(2095), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1359), + [sym_integer] = ACTIONS(1359), + [sym_float] = ACTIONS(1359), + [sym_char] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [sym_keyword] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [280] = { + [sym__expression] = STATE(2008), + [sym_block] = STATE(2008), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2008), + [sym_nil] = STATE(2008), + [sym__atom] = STATE(2008), + [sym_quoted_atom] = STATE(2008), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2008), + [sym_charlist] = STATE(2008), + [sym_sigil] = STATE(2008), + [sym_keywords] = STATE(1150), + [sym_pair] = STATE(1872), + [sym__keyword] = STATE(845), + [sym_quoted_keyword] = STATE(845), + [sym_list] = STATE(2008), + [sym_tuple] = STATE(2008), + [sym_bitstring] = STATE(2008), + [sym_map] = STATE(2008), + [sym_unary_operator] = STATE(2008), + [sym_binary_operator] = STATE(2008), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2008), + [sym_call] = STATE(2008), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2008), + [sym_anonymous_function] = STATE(2008), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1371), + [sym_integer] = ACTIONS(1371), + [sym_float] = ACTIONS(1371), + [sym_char] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [sym_keyword] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [281] = { + [sym__expression] = STATE(3084), + [sym_block] = STATE(3084), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3084), + [sym_nil] = STATE(3084), + [sym__atom] = STATE(3084), + [sym_quoted_atom] = STATE(3084), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3084), + [sym_charlist] = STATE(3084), + [sym_sigil] = STATE(3084), + [sym_keywords] = STATE(4678), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3084), + [sym_tuple] = STATE(3084), + [sym_bitstring] = STATE(3084), + [sym_map] = STATE(3084), + [sym_unary_operator] = STATE(3084), + [sym_binary_operator] = STATE(3084), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3084), + [sym_call] = STATE(3084), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3084), + [sym_anonymous_function] = STATE(3084), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1373), + [sym_integer] = ACTIONS(1373), + [sym_float] = ACTIONS(1373), + [sym_char] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [282] = { + [sym__expression] = STATE(2278), + [sym_block] = STATE(2278), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2278), + [sym_nil] = STATE(2278), + [sym__atom] = STATE(2278), + [sym_quoted_atom] = STATE(2278), + [sym__quoted_i_double] = STATE(1958), + [sym__quoted_i_single] = STATE(1961), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2278), + [sym_charlist] = STATE(2278), + [sym_sigil] = STATE(2278), + [sym_keywords] = STATE(2480), + [sym_pair] = STATE(2141), + [sym__keyword] = STATE(460), + [sym_quoted_keyword] = STATE(460), + [sym_list] = STATE(2278), + [sym_tuple] = STATE(2278), + [sym_bitstring] = STATE(2278), + [sym_map] = STATE(2278), + [sym_unary_operator] = STATE(2278), + [sym_binary_operator] = STATE(2278), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2278), + [sym_call] = STATE(2278), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2278), + [sym_anonymous_function] = STATE(2278), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1375), + [sym_integer] = ACTIONS(1375), + [sym_float] = ACTIONS(1375), + [sym_char] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [283] = { + [sym__expression] = STATE(2397), + [sym_block] = STATE(2397), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2397), + [sym_nil] = STATE(2397), + [sym__atom] = STATE(2397), + [sym_quoted_atom] = STATE(2397), + [sym__quoted_i_double] = STATE(2009), + [sym__quoted_i_single] = STATE(2010), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2397), + [sym_charlist] = STATE(2397), + [sym_sigil] = STATE(2397), + [sym_keywords] = STATE(2396), + [sym_pair] = STATE(2014), + [sym__keyword] = STATE(813), + [sym_quoted_keyword] = STATE(813), + [sym_list] = STATE(2397), + [sym_tuple] = STATE(2397), + [sym_bitstring] = STATE(2397), + [sym_map] = STATE(2397), + [sym_unary_operator] = STATE(2397), + [sym_binary_operator] = STATE(2397), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2397), + [sym_call] = STATE(2397), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2397), + [sym_anonymous_function] = STATE(2397), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1377), + [sym_integer] = ACTIONS(1377), + [sym_float] = ACTIONS(1377), + [sym_char] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [284] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1379), + [anon_sym_catch] = ACTIONS(1379), + [anon_sym_else] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [285] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_end] = ACTIONS(1381), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1381), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [286] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1383), + [anon_sym_catch] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1383), + [anon_sym_end] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1383), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [287] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1385), + [anon_sym_catch] = ACTIONS(1385), + [anon_sym_else] = ACTIONS(1385), + [anon_sym_end] = ACTIONS(1385), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1385), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [288] = { + [sym__expression] = STATE(3351), + [sym_block] = STATE(3351), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3351), + [sym_nil] = STATE(3351), + [sym__atom] = STATE(3351), + [sym_quoted_atom] = STATE(3351), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3351), + [sym_charlist] = STATE(3351), + [sym_sigil] = STATE(3351), + [sym_keywords] = STATE(4747), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3351), + [sym_tuple] = STATE(3351), + [sym_bitstring] = STATE(3351), + [sym_map] = STATE(3351), + [sym_unary_operator] = STATE(3351), + [sym_binary_operator] = STATE(3351), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3351), + [sym_call] = STATE(3351), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3351), + [sym_anonymous_function] = STATE(3351), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1387), + [sym_integer] = ACTIONS(1387), + [sym_float] = ACTIONS(1387), + [sym_char] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [289] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1389), + [anon_sym_catch] = ACTIONS(1389), + [anon_sym_else] = ACTIONS(1389), + [anon_sym_end] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1389), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [290] = { + [sym__expression] = STATE(2402), + [sym_block] = STATE(2402), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2402), + [sym_nil] = STATE(2402), + [sym__atom] = STATE(2402), + [sym_quoted_atom] = STATE(2402), + [sym__quoted_i_double] = STATE(2009), + [sym__quoted_i_single] = STATE(2010), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2402), + [sym_charlist] = STATE(2402), + [sym_sigil] = STATE(2402), + [sym_keywords] = STATE(2401), + [sym_pair] = STATE(2014), + [sym__keyword] = STATE(813), + [sym_quoted_keyword] = STATE(813), + [sym_list] = STATE(2402), + [sym_tuple] = STATE(2402), + [sym_bitstring] = STATE(2402), + [sym_map] = STATE(2402), + [sym_unary_operator] = STATE(2402), + [sym_binary_operator] = STATE(2402), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2402), + [sym_call] = STATE(2402), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2402), + [sym_anonymous_function] = STATE(2402), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1391), + [sym_integer] = ACTIONS(1391), + [sym_float] = ACTIONS(1391), + [sym_char] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [291] = { + [sym__expression] = STATE(2278), + [sym_block] = STATE(2278), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2278), + [sym_nil] = STATE(2278), + [sym__atom] = STATE(2278), + [sym_quoted_atom] = STATE(2278), + [sym__quoted_i_double] = STATE(1958), + [sym__quoted_i_single] = STATE(1961), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2278), + [sym_charlist] = STATE(2278), + [sym_sigil] = STATE(2278), + [sym_keywords] = STATE(2648), + [sym_pair] = STATE(2141), + [sym__keyword] = STATE(460), + [sym_quoted_keyword] = STATE(460), + [sym_list] = STATE(2278), + [sym_tuple] = STATE(2278), + [sym_bitstring] = STATE(2278), + [sym_map] = STATE(2278), + [sym_unary_operator] = STATE(2278), + [sym_binary_operator] = STATE(2278), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2278), + [sym_call] = STATE(2278), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2278), + [sym_anonymous_function] = STATE(2278), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1375), + [sym_integer] = ACTIONS(1375), + [sym_float] = ACTIONS(1375), + [sym_char] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [292] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1393), + [anon_sym_catch] = ACTIONS(1393), + [anon_sym_else] = ACTIONS(1393), + [anon_sym_end] = ACTIONS(1393), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1393), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [293] = { + [sym__expression] = STATE(2731), + [sym_block] = STATE(2731), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2731), + [sym_nil] = STATE(2731), + [sym__atom] = STATE(2731), + [sym_quoted_atom] = STATE(2731), + [sym__quoted_i_double] = STATE(2482), + [sym__quoted_i_single] = STATE(2485), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2731), + [sym_charlist] = STATE(2731), + [sym_sigil] = STATE(2731), + [sym_keywords] = STATE(2685), + [sym_pair] = STATE(2589), + [sym__keyword] = STATE(541), + [sym_quoted_keyword] = STATE(541), + [sym_list] = STATE(2731), + [sym_tuple] = STATE(2731), + [sym_bitstring] = STATE(2731), + [sym_map] = STATE(2731), + [sym_unary_operator] = STATE(2731), + [sym_binary_operator] = STATE(2731), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2731), + [sym_call] = STATE(2731), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2731), + [sym_anonymous_function] = STATE(2731), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1395), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1395), + [sym_char] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [294] = { + [sym__expression] = STATE(2731), + [sym_block] = STATE(2731), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2731), + [sym_nil] = STATE(2731), + [sym__atom] = STATE(2731), + [sym_quoted_atom] = STATE(2731), + [sym__quoted_i_double] = STATE(2482), + [sym__quoted_i_single] = STATE(2485), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2731), + [sym_charlist] = STATE(2731), + [sym_sigil] = STATE(2731), + [sym_keywords] = STATE(2655), + [sym_pair] = STATE(2589), + [sym__keyword] = STATE(541), + [sym_quoted_keyword] = STATE(541), + [sym_list] = STATE(2731), + [sym_tuple] = STATE(2731), + [sym_bitstring] = STATE(2731), + [sym_map] = STATE(2731), + [sym_unary_operator] = STATE(2731), + [sym_binary_operator] = STATE(2731), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2731), + [sym_call] = STATE(2731), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2731), + [sym_anonymous_function] = STATE(2731), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1395), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1395), + [sym_char] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [sym_keyword] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [295] = { + [sym__expression] = STATE(1519), + [sym_block] = STATE(1519), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1519), + [sym_nil] = STATE(1519), + [sym__atom] = STATE(1519), + [sym_quoted_atom] = STATE(1519), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1519), + [sym_charlist] = STATE(1519), + [sym_sigil] = STATE(1519), + [sym_keywords] = STATE(1256), + [sym_pair] = STATE(1394), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(1519), + [sym_tuple] = STATE(1519), + [sym_bitstring] = STATE(1519), + [sym_map] = STATE(1519), + [sym_unary_operator] = STATE(1519), + [sym_binary_operator] = STATE(1519), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1519), + [sym_call] = STATE(1519), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1519), + [sym_anonymous_function] = STATE(1519), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1397), + [sym_integer] = ACTIONS(1397), + [sym_float] = ACTIONS(1397), + [sym_char] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [296] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1399), + [anon_sym_catch] = ACTIONS(1399), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_end] = ACTIONS(1399), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1399), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [297] = { + [sym__terminator] = STATE(502), + [sym__expression] = STATE(2481), + [sym_block] = STATE(2481), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(2481), + [sym_nil] = STATE(2481), + [sym__atom] = STATE(2481), + [sym_quoted_atom] = STATE(2481), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2481), + [sym_charlist] = STATE(2481), + [sym_sigil] = STATE(2481), + [sym_list] = STATE(2481), + [sym_tuple] = STATE(2481), + [sym_bitstring] = STATE(2481), + [sym_map] = STATE(2481), + [sym_unary_operator] = STATE(2481), + [sym_binary_operator] = STATE(2481), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2481), + [sym_call] = STATE(2481), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2481), + [sym_body] = STATE(3640), + [sym_anonymous_function] = STATE(2481), + [aux_sym__terminator_repeat1] = STATE(1029), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1409), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1409), + [sym_char] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_end] = ACTIONS(1063), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [298] = { + [sym__expression] = STATE(2110), + [sym_block] = STATE(2110), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2110), + [sym_nil] = STATE(2110), + [sym__atom] = STATE(2110), + [sym_quoted_atom] = STATE(2110), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2110), + [sym_charlist] = STATE(2110), + [sym_sigil] = STATE(2110), + [sym_keywords] = STATE(1215), + [sym_pair] = STATE(1872), + [sym__keyword] = STATE(845), + [sym_quoted_keyword] = STATE(845), + [sym_list] = STATE(2110), + [sym_tuple] = STATE(2110), + [sym_bitstring] = STATE(2110), + [sym_map] = STATE(2110), + [sym_unary_operator] = STATE(2110), + [sym_binary_operator] = STATE(2110), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2110), + [sym_call] = STATE(2110), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2110), + [sym_anonymous_function] = STATE(2110), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1421), + [sym_integer] = ACTIONS(1421), + [sym_float] = ACTIONS(1421), + [sym_char] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [sym_keyword] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [299] = { + [sym__expression] = STATE(1519), + [sym_block] = STATE(1519), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1519), + [sym_nil] = STATE(1519), + [sym__atom] = STATE(1519), + [sym_quoted_atom] = STATE(1519), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1519), + [sym_charlist] = STATE(1519), + [sym_sigil] = STATE(1519), + [sym_keywords] = STATE(1383), + [sym_pair] = STATE(1394), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(1519), + [sym_tuple] = STATE(1519), + [sym_bitstring] = STATE(1519), + [sym_map] = STATE(1519), + [sym_unary_operator] = STATE(1519), + [sym_binary_operator] = STATE(1519), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1519), + [sym_call] = STATE(1519), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1519), + [sym_anonymous_function] = STATE(1519), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1397), + [sym_integer] = ACTIONS(1397), + [sym_float] = ACTIONS(1397), + [sym_char] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [300] = { + [sym__expression] = STATE(2094), + [sym_block] = STATE(2094), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2094), + [sym_nil] = STATE(2094), + [sym__atom] = STATE(2094), + [sym_quoted_atom] = STATE(2094), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2094), + [sym_charlist] = STATE(2094), + [sym_sigil] = STATE(2094), + [sym_keywords] = STATE(1218), + [sym_pair] = STATE(1872), + [sym__keyword] = STATE(845), + [sym_quoted_keyword] = STATE(845), + [sym_list] = STATE(2094), + [sym_tuple] = STATE(2094), + [sym_bitstring] = STATE(2094), + [sym_map] = STATE(2094), + [sym_unary_operator] = STATE(2094), + [sym_binary_operator] = STATE(2094), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2094), + [sym_call] = STATE(2094), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2094), + [sym_anonymous_function] = STATE(2094), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1423), + [sym_integer] = ACTIONS(1423), + [sym_float] = ACTIONS(1423), + [sym_char] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [sym_keyword] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [301] = { + [sym__expression] = STATE(2511), + [sym_block] = STATE(2511), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2511), + [sym_nil] = STATE(2511), + [sym__atom] = STATE(2511), + [sym_quoted_atom] = STATE(2511), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2511), + [sym_charlist] = STATE(2511), + [sym_sigil] = STATE(2511), + [sym_keywords] = STATE(1383), + [sym_pair] = STATE(1918), + [sym__keyword] = STATE(869), + [sym_quoted_keyword] = STATE(869), + [sym_list] = STATE(2511), + [sym_tuple] = STATE(2511), + [sym_bitstring] = STATE(2511), + [sym_map] = STATE(2511), + [sym_unary_operator] = STATE(2511), + [sym_binary_operator] = STATE(2511), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2511), + [sym_call] = STATE(2511), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2511), + [sym_anonymous_function] = STATE(2511), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1425), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1425), + [sym_char] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [302] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1427), + [anon_sym_catch] = ACTIONS(1427), + [anon_sym_else] = ACTIONS(1427), + [anon_sym_end] = ACTIONS(1427), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1427), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [303] = { + [sym__expression] = STATE(3351), + [sym_block] = STATE(3351), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3351), + [sym_nil] = STATE(3351), + [sym__atom] = STATE(3351), + [sym_quoted_atom] = STATE(3351), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3351), + [sym_charlist] = STATE(3351), + [sym_sigil] = STATE(3351), + [sym_keywords] = STATE(4693), + [sym_pair] = STATE(4179), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3351), + [sym_tuple] = STATE(3351), + [sym_bitstring] = STATE(3351), + [sym_map] = STATE(3351), + [sym_unary_operator] = STATE(3351), + [sym_binary_operator] = STATE(3351), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3351), + [sym_call] = STATE(3351), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3351), + [sym_anonymous_function] = STATE(3351), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1387), + [sym_integer] = ACTIONS(1387), + [sym_float] = ACTIONS(1387), + [sym_char] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [304] = { + [sym__expression] = STATE(3264), + [sym_block] = STATE(3264), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3264), + [sym_nil] = STATE(3264), + [sym__atom] = STATE(3264), + [sym_quoted_atom] = STATE(3264), + [sym__quoted_i_double] = STATE(3001), + [sym__quoted_i_single] = STATE(3000), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3264), + [sym_charlist] = STATE(3264), + [sym_sigil] = STATE(3264), + [sym_keywords] = STATE(3265), + [sym_pair] = STATE(2739), + [sym__keyword] = STATE(494), + [sym_quoted_keyword] = STATE(494), + [sym_list] = STATE(3264), + [sym_tuple] = STATE(3264), + [sym_bitstring] = STATE(3264), + [sym_map] = STATE(3264), + [sym_unary_operator] = STATE(3264), + [sym_binary_operator] = STATE(3264), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3264), + [sym_call] = STATE(3264), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3264), + [sym_anonymous_function] = STATE(3264), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1429), + [sym_integer] = ACTIONS(1429), + [sym_float] = ACTIONS(1429), + [sym_char] = ACTIONS(1429), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [sym_keyword] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [305] = { + [sym__expression] = STATE(2613), + [sym_block] = STATE(2613), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2613), + [sym_nil] = STATE(2613), + [sym__atom] = STATE(2613), + [sym_quoted_atom] = STATE(2613), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2613), + [sym_charlist] = STATE(2613), + [sym_sigil] = STATE(2613), + [sym_keywords] = STATE(1352), + [sym_pair] = STATE(1918), + [sym__keyword] = STATE(869), + [sym_quoted_keyword] = STATE(869), + [sym_list] = STATE(2613), + [sym_tuple] = STATE(2613), + [sym_bitstring] = STATE(2613), + [sym_map] = STATE(2613), + [sym_unary_operator] = STATE(2613), + [sym_binary_operator] = STATE(2613), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2613), + [sym_call] = STATE(2613), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2613), + [sym_anonymous_function] = STATE(2613), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1433), + [sym_integer] = ACTIONS(1433), + [sym_float] = ACTIONS(1433), + [sym_char] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1433), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [306] = { + [sym__expression] = STATE(2609), + [sym_block] = STATE(2609), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2609), + [sym_nil] = STATE(2609), + [sym__atom] = STATE(2609), + [sym_quoted_atom] = STATE(2609), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2609), + [sym_charlist] = STATE(2609), + [sym_sigil] = STATE(2609), + [sym_keywords] = STATE(1363), + [sym_pair] = STATE(1918), + [sym__keyword] = STATE(869), + [sym_quoted_keyword] = STATE(869), + [sym_list] = STATE(2609), + [sym_tuple] = STATE(2609), + [sym_bitstring] = STATE(2609), + [sym_map] = STATE(2609), + [sym_unary_operator] = STATE(2609), + [sym_binary_operator] = STATE(2609), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2609), + [sym_call] = STATE(2609), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2609), + [sym_anonymous_function] = STATE(2609), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1435), + [sym_integer] = ACTIONS(1435), + [sym_float] = ACTIONS(1435), + [sym_char] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [307] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1437), + [anon_sym_catch] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1437), + [anon_sym_end] = ACTIONS(1437), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1437), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [308] = { + [sym__expression] = STATE(2511), + [sym_block] = STATE(2511), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2511), + [sym_nil] = STATE(2511), + [sym__atom] = STATE(2511), + [sym_quoted_atom] = STATE(2511), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2511), + [sym_charlist] = STATE(2511), + [sym_sigil] = STATE(2511), + [sym_keywords] = STATE(1256), + [sym_pair] = STATE(1918), + [sym__keyword] = STATE(869), + [sym_quoted_keyword] = STATE(869), + [sym_list] = STATE(2511), + [sym_tuple] = STATE(2511), + [sym_bitstring] = STATE(2511), + [sym_map] = STATE(2511), + [sym_unary_operator] = STATE(2511), + [sym_binary_operator] = STATE(2511), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2511), + [sym_call] = STATE(2511), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2511), + [sym_anonymous_function] = STATE(2511), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1425), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1425), + [sym_char] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [sym_keyword] = ACTIONS(446), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [309] = { + [sym__expression] = STATE(1319), + [sym_block] = STATE(1319), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1319), + [sym_nil] = STATE(1319), + [sym__atom] = STATE(1319), + [sym_quoted_atom] = STATE(1319), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1319), + [sym_charlist] = STATE(1319), + [sym_sigil] = STATE(1319), + [sym_keywords] = STATE(1215), + [sym_pair] = STATE(1238), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1319), + [sym_tuple] = STATE(1319), + [sym_bitstring] = STATE(1319), + [sym_map] = STATE(1319), + [sym_unary_operator] = STATE(1319), + [sym_binary_operator] = STATE(1319), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1319), + [sym_call] = STATE(1319), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1319), + [sym_anonymous_function] = STATE(1319), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1439), + [sym_integer] = ACTIONS(1439), + [sym_float] = ACTIONS(1439), + [sym_char] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1439), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [310] = { + [sym__expression] = STATE(1308), + [sym_block] = STATE(1308), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1308), + [sym_nil] = STATE(1308), + [sym__atom] = STATE(1308), + [sym_quoted_atom] = STATE(1308), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1308), + [sym_charlist] = STATE(1308), + [sym_sigil] = STATE(1308), + [sym_keywords] = STATE(1218), + [sym_pair] = STATE(1238), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1308), + [sym_tuple] = STATE(1308), + [sym_bitstring] = STATE(1308), + [sym_map] = STATE(1308), + [sym_unary_operator] = STATE(1308), + [sym_binary_operator] = STATE(1308), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1308), + [sym_call] = STATE(1308), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1308), + [sym_anonymous_function] = STATE(1308), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1441), + [sym_integer] = ACTIONS(1441), + [sym_float] = ACTIONS(1441), + [sym_char] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [311] = { + [sym__expression] = STATE(1955), + [sym_block] = STATE(1955), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1955), + [sym_nil] = STATE(1955), + [sym__atom] = STATE(1955), + [sym_quoted_atom] = STATE(1955), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1955), + [sym_charlist] = STATE(1955), + [sym_sigil] = STATE(1955), + [sym_keywords] = STATE(1827), + [sym_pair] = STATE(1870), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1955), + [sym_tuple] = STATE(1955), + [sym_bitstring] = STATE(1955), + [sym_map] = STATE(1955), + [sym_unary_operator] = STATE(1955), + [sym_binary_operator] = STATE(1955), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1955), + [sym_call] = STATE(1955), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1955), + [sym_anonymous_function] = STATE(1955), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1443), + [sym_integer] = ACTIONS(1443), + [sym_float] = ACTIONS(1443), + [sym_char] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1443), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [sym_keyword] = ACTIONS(385), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [312] = { + [sym__expression] = STATE(2861), + [sym_block] = STATE(2861), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2861), + [sym_nil] = STATE(2861), + [sym__atom] = STATE(2861), + [sym_quoted_atom] = STATE(2861), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2861), + [sym_charlist] = STATE(2861), + [sym_sigil] = STATE(2861), + [sym_keywords] = STATE(1512), + [sym_pair] = STATE(2640), + [sym__keyword] = STATE(700), + [sym_quoted_keyword] = STATE(700), + [sym_list] = STATE(2861), + [sym_tuple] = STATE(2861), + [sym_bitstring] = STATE(2861), + [sym_map] = STATE(2861), + [sym_unary_operator] = STATE(2861), + [sym_binary_operator] = STATE(2861), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2861), + [sym_call] = STATE(2861), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2861), + [sym_anonymous_function] = STATE(2861), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1445), + [sym_integer] = ACTIONS(1445), + [sym_float] = ACTIONS(1445), + [sym_char] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1445), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [313] = { + [sym__expression] = STATE(3137), + [sym_block] = STATE(3137), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3137), + [sym_nil] = STATE(3137), + [sym__atom] = STATE(3137), + [sym_quoted_atom] = STATE(3137), + [sym__quoted_i_double] = STATE(3001), + [sym__quoted_i_single] = STATE(3000), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3137), + [sym_charlist] = STATE(3137), + [sym_sigil] = STATE(3137), + [sym_keywords] = STATE(3140), + [sym_pair] = STATE(2739), + [sym__keyword] = STATE(494), + [sym_quoted_keyword] = STATE(494), + [sym_list] = STATE(3137), + [sym_tuple] = STATE(3137), + [sym_bitstring] = STATE(3137), + [sym_map] = STATE(3137), + [sym_unary_operator] = STATE(3137), + [sym_binary_operator] = STATE(3137), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3137), + [sym_call] = STATE(3137), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3137), + [sym_anonymous_function] = STATE(3137), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1449), + [sym_integer] = ACTIONS(1449), + [sym_float] = ACTIONS(1449), + [sym_char] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [sym_keyword] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [314] = { + [sym__expression] = STATE(3223), + [sym_block] = STATE(3223), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3223), + [sym_nil] = STATE(3223), + [sym__atom] = STATE(3223), + [sym_quoted_atom] = STATE(3223), + [sym__quoted_i_double] = STATE(2672), + [sym__quoted_i_single] = STATE(2671), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3223), + [sym_charlist] = STATE(3223), + [sym_sigil] = STATE(3223), + [sym_keywords] = STATE(3222), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(587), + [sym_quoted_keyword] = STATE(587), + [sym_list] = STATE(3223), + [sym_tuple] = STATE(3223), + [sym_bitstring] = STATE(3223), + [sym_map] = STATE(3223), + [sym_unary_operator] = STATE(3223), + [sym_binary_operator] = STATE(3223), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3223), + [sym_call] = STATE(3223), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3223), + [sym_anonymous_function] = STATE(3223), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1451), + [sym_integer] = ACTIONS(1451), + [sym_float] = ACTIONS(1451), + [sym_char] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [sym_keyword] = ACTIONS(93), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [315] = { + [sym__expression] = STATE(2754), + [sym_block] = STATE(2754), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2754), + [sym_nil] = STATE(2754), + [sym__atom] = STATE(2754), + [sym_quoted_atom] = STATE(2754), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2754), + [sym_charlist] = STATE(2754), + [sym_sigil] = STATE(2754), + [sym_keywords] = STATE(2286), + [sym_pair] = STATE(2647), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2754), + [sym_tuple] = STATE(2754), + [sym_bitstring] = STATE(2754), + [sym_map] = STATE(2754), + [sym_unary_operator] = STATE(2754), + [sym_binary_operator] = STATE(2754), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2754), + [sym_call] = STATE(2754), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2754), + [sym_anonymous_function] = STATE(2754), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1453), + [sym_integer] = ACTIONS(1453), + [sym_float] = ACTIONS(1453), + [sym_char] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [316] = { + [sym__expression] = STATE(2759), + [sym_block] = STATE(2759), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2759), + [sym_nil] = STATE(2759), + [sym__atom] = STATE(2759), + [sym_quoted_atom] = STATE(2759), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2759), + [sym_charlist] = STATE(2759), + [sym_sigil] = STATE(2759), + [sym_keywords] = STATE(2287), + [sym_pair] = STATE(2647), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2759), + [sym_tuple] = STATE(2759), + [sym_bitstring] = STATE(2759), + [sym_map] = STATE(2759), + [sym_unary_operator] = STATE(2759), + [sym_binary_operator] = STATE(2759), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2759), + [sym_call] = STATE(2759), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2759), + [sym_anonymous_function] = STATE(2759), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1455), + [sym_integer] = ACTIONS(1455), + [sym_float] = ACTIONS(1455), + [sym_char] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [317] = { + [sym__expression] = STATE(2853), + [sym_block] = STATE(2853), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2853), + [sym_nil] = STATE(2853), + [sym__atom] = STATE(2853), + [sym_quoted_atom] = STATE(2853), + [sym__quoted_i_double] = STATE(1306), + [sym__quoted_i_single] = STATE(1322), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2853), + [sym_charlist] = STATE(2853), + [sym_sigil] = STATE(2853), + [sym_keywords] = STATE(1544), + [sym_pair] = STATE(2640), + [sym__keyword] = STATE(700), + [sym_quoted_keyword] = STATE(700), + [sym_list] = STATE(2853), + [sym_tuple] = STATE(2853), + [sym_bitstring] = STATE(2853), + [sym_map] = STATE(2853), + [sym_unary_operator] = STATE(2853), + [sym_binary_operator] = STATE(2853), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2853), + [sym_call] = STATE(2853), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2853), + [sym_anonymous_function] = STATE(2853), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1457), + [sym_integer] = ACTIONS(1457), + [sym_float] = ACTIONS(1457), + [sym_char] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [sym_keyword] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [318] = { + [sym__expression] = STATE(2314), + [sym_block] = STATE(2314), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2314), + [sym_nil] = STATE(2314), + [sym__atom] = STATE(2314), + [sym_quoted_atom] = STATE(2314), + [sym__quoted_i_double] = STATE(1958), + [sym__quoted_i_single] = STATE(1961), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2314), + [sym_charlist] = STATE(2314), + [sym_sigil] = STATE(2314), + [sym_keywords] = STATE(2417), + [sym_pair] = STATE(2141), + [sym__keyword] = STATE(460), + [sym_quoted_keyword] = STATE(460), + [sym_list] = STATE(2314), + [sym_tuple] = STATE(2314), + [sym_bitstring] = STATE(2314), + [sym_map] = STATE(2314), + [sym_unary_operator] = STATE(2314), + [sym_binary_operator] = STATE(2314), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2314), + [sym_call] = STATE(2314), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2314), + [sym_anonymous_function] = STATE(2314), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1459), + [sym_integer] = ACTIONS(1459), + [sym_float] = ACTIONS(1459), + [sym_char] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [sym_keyword] = ACTIONS(580), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [319] = { + [sym__expression] = STATE(2008), + [sym_block] = STATE(2008), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2008), + [sym_nil] = STATE(2008), + [sym__atom] = STATE(2008), + [sym_quoted_atom] = STATE(2008), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2008), + [sym_charlist] = STATE(2008), + [sym_sigil] = STATE(2008), + [sym_keywords] = STATE(1232), + [sym_pair] = STATE(1872), + [sym__keyword] = STATE(845), + [sym_quoted_keyword] = STATE(845), + [sym_list] = STATE(2008), + [sym_tuple] = STATE(2008), + [sym_bitstring] = STATE(2008), + [sym_map] = STATE(2008), + [sym_unary_operator] = STATE(2008), + [sym_binary_operator] = STATE(2008), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2008), + [sym_call] = STATE(2008), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2008), + [sym_anonymous_function] = STATE(2008), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1371), + [sym_integer] = ACTIONS(1371), + [sym_float] = ACTIONS(1371), + [sym_char] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [sym_keyword] = ACTIONS(466), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [320] = { + [sym__expression] = STATE(3160), + [sym_block] = STATE(3160), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3160), + [sym_nil] = STATE(3160), + [sym__atom] = STATE(3160), + [sym_quoted_atom] = STATE(3160), + [sym__quoted_i_double] = STATE(1409), + [sym__quoted_i_single] = STATE(1408), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3160), + [sym_charlist] = STATE(3160), + [sym_sigil] = STATE(3160), + [sym_keywords] = STATE(1670), + [sym_pair] = STATE(2729), + [sym__keyword] = STATE(882), + [sym_quoted_keyword] = STATE(882), + [sym_list] = STATE(3160), + [sym_tuple] = STATE(3160), + [sym_bitstring] = STATE(3160), + [sym_map] = STATE(3160), + [sym_unary_operator] = STATE(3160), + [sym_binary_operator] = STATE(3160), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3160), + [sym_call] = STATE(3160), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3160), + [sym_anonymous_function] = STATE(3160), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1463), + [sym_integer] = ACTIONS(1463), + [sym_float] = ACTIONS(1463), + [sym_char] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [sym_keyword] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [321] = { + [sym__terminator] = STATE(502), + [sym__expression] = STATE(2481), + [sym_block] = STATE(2481), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(2481), + [sym_nil] = STATE(2481), + [sym__atom] = STATE(2481), + [sym_quoted_atom] = STATE(2481), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2481), + [sym_charlist] = STATE(2481), + [sym_sigil] = STATE(2481), + [sym_list] = STATE(2481), + [sym_tuple] = STATE(2481), + [sym_bitstring] = STATE(2481), + [sym_map] = STATE(2481), + [sym_unary_operator] = STATE(2481), + [sym_binary_operator] = STATE(2481), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2481), + [sym_call] = STATE(2481), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2481), + [sym_body] = STATE(3643), + [sym_anonymous_function] = STATE(2481), + [aux_sym__terminator_repeat1] = STATE(1029), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1409), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1409), + [sym_char] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_end] = ACTIONS(1065), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [322] = { + [sym__expression] = STATE(3151), + [sym_block] = STATE(3151), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3151), + [sym_nil] = STATE(3151), + [sym__atom] = STATE(3151), + [sym_quoted_atom] = STATE(3151), + [sym__quoted_i_double] = STATE(1409), + [sym__quoted_i_single] = STATE(1408), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3151), + [sym_charlist] = STATE(3151), + [sym_sigil] = STATE(3151), + [sym_keywords] = STATE(1667), + [sym_pair] = STATE(2729), + [sym__keyword] = STATE(882), + [sym_quoted_keyword] = STATE(882), + [sym_list] = STATE(3151), + [sym_tuple] = STATE(3151), + [sym_bitstring] = STATE(3151), + [sym_map] = STATE(3151), + [sym_unary_operator] = STATE(3151), + [sym_binary_operator] = STATE(3151), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3151), + [sym_call] = STATE(3151), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3151), + [sym_anonymous_function] = STATE(3151), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1477), + [sym_integer] = ACTIONS(1477), + [sym_float] = ACTIONS(1477), + [sym_char] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1477), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [sym_keyword] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [323] = { + [sym__expression] = STATE(3048), + [sym_block] = STATE(3048), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3048), + [sym_nil] = STATE(3048), + [sym__atom] = STATE(3048), + [sym_quoted_atom] = STATE(3048), + [sym__quoted_i_double] = STATE(1409), + [sym__quoted_i_single] = STATE(1408), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3048), + [sym_charlist] = STATE(3048), + [sym_sigil] = STATE(3048), + [sym_keywords] = STATE(1670), + [sym_pair] = STATE(2965), + [sym__keyword] = STATE(876), + [sym_quoted_keyword] = STATE(876), + [sym_list] = STATE(3048), + [sym_tuple] = STATE(3048), + [sym_bitstring] = STATE(3048), + [sym_map] = STATE(3048), + [sym_unary_operator] = STATE(3048), + [sym_binary_operator] = STATE(3048), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3048), + [sym_call] = STATE(3048), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3048), + [sym_anonymous_function] = STATE(3048), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1479), + [sym_integer] = ACTIONS(1479), + [sym_float] = ACTIONS(1479), + [sym_char] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [sym_keyword] = ACTIONS(1481), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [324] = { + [sym__expression] = STATE(2515), + [sym_block] = STATE(2515), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2515), + [sym_nil] = STATE(2515), + [sym__atom] = STATE(2515), + [sym_quoted_atom] = STATE(2515), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2515), + [sym_charlist] = STATE(2515), + [sym_sigil] = STATE(2515), + [sym_keywords] = STATE(1383), + [sym_pair] = STATE(2118), + [sym__keyword] = STATE(598), + [sym_quoted_keyword] = STATE(598), + [sym_list] = STATE(2515), + [sym_tuple] = STATE(2515), + [sym_bitstring] = STATE(2515), + [sym_map] = STATE(2515), + [sym_unary_operator] = STATE(2515), + [sym_binary_operator] = STATE(2515), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2515), + [sym_call] = STATE(2515), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2515), + [sym_anonymous_function] = STATE(2515), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1343), + [sym_integer] = ACTIONS(1343), + [sym_float] = ACTIONS(1343), + [sym_char] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [sym_keyword] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [325] = { + [sym__expression] = STATE(1492), + [sym_block] = STATE(1492), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1492), + [sym_nil] = STATE(1492), + [sym__atom] = STATE(1492), + [sym_quoted_atom] = STATE(1492), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1492), + [sym_charlist] = STATE(1492), + [sym_sigil] = STATE(1492), + [sym_keywords] = STATE(1352), + [sym_pair] = STATE(1394), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(1492), + [sym_tuple] = STATE(1492), + [sym_bitstring] = STATE(1492), + [sym_map] = STATE(1492), + [sym_unary_operator] = STATE(1492), + [sym_binary_operator] = STATE(1492), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1492), + [sym_call] = STATE(1492), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1492), + [sym_anonymous_function] = STATE(1492), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1483), + [sym_integer] = ACTIONS(1483), + [sym_float] = ACTIONS(1483), + [sym_char] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [326] = { + [sym__expression] = STATE(2885), + [sym_block] = STATE(2885), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2885), + [sym_nil] = STATE(2885), + [sym__atom] = STATE(2885), + [sym_quoted_atom] = STATE(2885), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2885), + [sym_charlist] = STATE(2885), + [sym_sigil] = STATE(2885), + [sym_keywords] = STATE(4868), + [sym_pair] = STATE(4675), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_bitstring] = STATE(2885), + [sym_map] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_binary_operator] = STATE(2885), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2885), + [sym_call] = STATE(2885), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2885), + [sym_anonymous_function] = STATE(2885), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1201), + [sym_integer] = ACTIONS(1201), + [sym_float] = ACTIONS(1201), + [sym_char] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [327] = { + [sym__expression] = STATE(1908), + [sym_block] = STATE(1908), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1908), + [sym_nil] = STATE(1908), + [sym__atom] = STATE(1908), + [sym_quoted_atom] = STATE(1908), + [sym__quoted_i_double] = STATE(1409), + [sym__quoted_i_single] = STATE(1408), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1908), + [sym_charlist] = STATE(1908), + [sym_sigil] = STATE(1908), + [sym_keywords] = STATE(1670), + [sym_pair] = STATE(1706), + [sym__keyword] = STATE(862), + [sym_quoted_keyword] = STATE(862), + [sym_list] = STATE(1908), + [sym_tuple] = STATE(1908), + [sym_bitstring] = STATE(1908), + [sym_map] = STATE(1908), + [sym_unary_operator] = STATE(1908), + [sym_binary_operator] = STATE(1908), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1908), + [sym_call] = STATE(1908), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1908), + [sym_anonymous_function] = STATE(1908), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1485), + [sym_integer] = ACTIONS(1485), + [sym_float] = ACTIONS(1485), + [sym_char] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [sym_keyword] = ACTIONS(1337), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [328] = { + [sym__expression] = STATE(2668), + [sym_block] = STATE(2668), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2668), + [sym_nil] = STATE(2668), + [sym__atom] = STATE(2668), + [sym_quoted_atom] = STATE(2668), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2668), + [sym_charlist] = STATE(2668), + [sym_sigil] = STATE(2668), + [sym_keywords] = STATE(1832), + [sym_pair] = STATE(2646), + [sym__keyword] = STATE(836), + [sym_quoted_keyword] = STATE(836), + [sym_list] = STATE(2668), + [sym_tuple] = STATE(2668), + [sym_bitstring] = STATE(2668), + [sym_map] = STATE(2668), + [sym_unary_operator] = STATE(2668), + [sym_binary_operator] = STATE(2668), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2668), + [sym_call] = STATE(2668), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2668), + [sym_anonymous_function] = STATE(2668), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1487), + [sym_integer] = ACTIONS(1487), + [sym_float] = ACTIONS(1487), + [sym_char] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [sym_keyword] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [329] = { + [sym__expression] = STATE(2676), + [sym_block] = STATE(2676), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2676), + [sym_nil] = STATE(2676), + [sym__atom] = STATE(2676), + [sym_quoted_atom] = STATE(2676), + [sym__quoted_i_double] = STATE(1715), + [sym__quoted_i_single] = STATE(1714), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2676), + [sym_charlist] = STATE(2676), + [sym_sigil] = STATE(2676), + [sym_keywords] = STATE(1827), + [sym_pair] = STATE(2646), + [sym__keyword] = STATE(836), + [sym_quoted_keyword] = STATE(836), + [sym_list] = STATE(2676), + [sym_tuple] = STATE(2676), + [sym_bitstring] = STATE(2676), + [sym_map] = STATE(2676), + [sym_unary_operator] = STATE(2676), + [sym_binary_operator] = STATE(2676), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2676), + [sym_call] = STATE(2676), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2676), + [sym_anonymous_function] = STATE(2676), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1489), + [sym_integer] = ACTIONS(1489), + [sym_float] = ACTIONS(1489), + [sym_char] = ACTIONS(1489), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [sym_keyword] = ACTIONS(677), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [330] = { + [sym__expression] = STATE(3043), + [sym_block] = STATE(3043), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3043), + [sym_nil] = STATE(3043), + [sym__atom] = STATE(3043), + [sym_quoted_atom] = STATE(3043), + [sym__quoted_i_double] = STATE(1409), + [sym__quoted_i_single] = STATE(1408), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3043), + [sym_charlist] = STATE(3043), + [sym_sigil] = STATE(3043), + [sym_keywords] = STATE(1667), + [sym_pair] = STATE(2965), + [sym__keyword] = STATE(876), + [sym_quoted_keyword] = STATE(876), + [sym_list] = STATE(3043), + [sym_tuple] = STATE(3043), + [sym_bitstring] = STATE(3043), + [sym_map] = STATE(3043), + [sym_unary_operator] = STATE(3043), + [sym_binary_operator] = STATE(3043), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3043), + [sym_call] = STATE(3043), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3043), + [sym_anonymous_function] = STATE(3043), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1491), + [sym_integer] = ACTIONS(1491), + [sym_float] = ACTIONS(1491), + [sym_char] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [sym_keyword] = ACTIONS(1481), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [331] = { + [sym__terminator] = STATE(797), + [sym__expression] = STATE(2633), + [sym_block] = STATE(2633), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(2633), + [sym_nil] = STATE(2633), + [sym__atom] = STATE(2633), + [sym_quoted_atom] = STATE(2633), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2633), + [sym_charlist] = STATE(2633), + [sym_sigil] = STATE(2633), + [sym_list] = STATE(2633), + [sym_tuple] = STATE(2633), + [sym_bitstring] = STATE(2633), + [sym_map] = STATE(2633), + [sym_unary_operator] = STATE(2633), + [sym_binary_operator] = STATE(2633), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2633), + [sym_call] = STATE(2633), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2633), + [sym_body] = STATE(3640), + [sym_anonymous_function] = STATE(2633), + [aux_sym__terminator_repeat1] = STATE(1029), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1063), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1495), + [sym_integer] = ACTIONS(1495), + [sym_float] = ACTIONS(1495), + [sym_char] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [332] = { + [sym__expression] = STATE(3344), + [sym_block] = STATE(3344), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3344), + [sym_nil] = STATE(3344), + [sym__atom] = STATE(3344), + [sym_quoted_atom] = STATE(3344), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3344), + [sym_charlist] = STATE(3344), + [sym_sigil] = STATE(3344), + [sym_keywords] = STATE(3343), + [sym_pair] = STATE(3026), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3344), + [sym_tuple] = STATE(3344), + [sym_bitstring] = STATE(3344), + [sym_map] = STATE(3344), + [sym_unary_operator] = STATE(3344), + [sym_binary_operator] = STATE(3344), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3344), + [sym_call] = STATE(3344), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3344), + [sym_anonymous_function] = STATE(3344), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1497), + [sym_integer] = ACTIONS(1497), + [sym_float] = ACTIONS(1497), + [sym_char] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [333] = { + [sym__expression] = STATE(3361), + [sym_block] = STATE(3361), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3361), + [sym_nil] = STATE(3361), + [sym__atom] = STATE(3361), + [sym_quoted_atom] = STATE(3361), + [sym__quoted_i_double] = STATE(3058), + [sym__quoted_i_single] = STATE(3057), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3361), + [sym_charlist] = STATE(3361), + [sym_sigil] = STATE(3361), + [sym_keywords] = STATE(3363), + [sym_pair] = STATE(3026), + [sym__keyword] = STATE(776), + [sym_quoted_keyword] = STATE(776), + [sym_list] = STATE(3361), + [sym_tuple] = STATE(3361), + [sym_bitstring] = STATE(3361), + [sym_map] = STATE(3361), + [sym_unary_operator] = STATE(3361), + [sym_binary_operator] = STATE(3361), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3361), + [sym_call] = STATE(3361), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3361), + [sym_anonymous_function] = STATE(3361), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1499), + [sym_integer] = ACTIONS(1499), + [sym_float] = ACTIONS(1499), + [sym_char] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [sym_keyword] = ACTIONS(1143), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [334] = { + [sym__expression] = STATE(1509), + [sym_block] = STATE(1509), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1509), + [sym_nil] = STATE(1509), + [sym__atom] = STATE(1509), + [sym_quoted_atom] = STATE(1509), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1509), + [sym_charlist] = STATE(1509), + [sym_sigil] = STATE(1509), + [sym_keywords] = STATE(1363), + [sym_pair] = STATE(1394), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(1509), + [sym_tuple] = STATE(1509), + [sym_bitstring] = STATE(1509), + [sym_map] = STATE(1509), + [sym_unary_operator] = STATE(1509), + [sym_binary_operator] = STATE(1509), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1509), + [sym_call] = STATE(1509), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1509), + [sym_anonymous_function] = STATE(1509), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1501), + [sym_integer] = ACTIONS(1501), + [sym_float] = ACTIONS(1501), + [sym_char] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [sym_keyword] = ACTIONS(276), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [335] = { + [sym__expression] = STATE(2343), + [sym_block] = STATE(2343), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2343), + [sym_nil] = STATE(2343), + [sym__atom] = STATE(2343), + [sym_quoted_atom] = STATE(2343), + [sym__quoted_i_double] = STATE(2009), + [sym__quoted_i_single] = STATE(2010), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2343), + [sym_charlist] = STATE(2343), + [sym_sigil] = STATE(2343), + [sym_keywords] = STATE(2590), + [sym_pair] = STATE(2014), + [sym__keyword] = STATE(813), + [sym_quoted_keyword] = STATE(813), + [sym_list] = STATE(2343), + [sym_tuple] = STATE(2343), + [sym_bitstring] = STATE(2343), + [sym_map] = STATE(2343), + [sym_unary_operator] = STATE(2343), + [sym_binary_operator] = STATE(2343), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2343), + [sym_call] = STATE(2343), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2343), + [sym_anonymous_function] = STATE(2343), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1347), + [sym_integer] = ACTIONS(1347), + [sym_float] = ACTIONS(1347), + [sym_char] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [sym_keyword] = ACTIONS(529), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [336] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_after] = ACTIONS(1503), + [anon_sym_catch] = ACTIONS(1503), + [anon_sym_else] = ACTIONS(1503), + [anon_sym_end] = ACTIONS(1503), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_rescue] = ACTIONS(1503), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [337] = { + [sym__expression] = STATE(2528), + [sym_block] = STATE(2528), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2528), + [sym_nil] = STATE(2528), + [sym__atom] = STATE(2528), + [sym_quoted_atom] = STATE(2528), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2528), + [sym_charlist] = STATE(2528), + [sym_sigil] = STATE(2528), + [sym_keywords] = STATE(1352), + [sym_pair] = STATE(2118), + [sym__keyword] = STATE(598), + [sym_quoted_keyword] = STATE(598), + [sym_list] = STATE(2528), + [sym_tuple] = STATE(2528), + [sym_bitstring] = STATE(2528), + [sym_map] = STATE(2528), + [sym_unary_operator] = STATE(2528), + [sym_binary_operator] = STATE(2528), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2528), + [sym_call] = STATE(2528), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2528), + [sym_anonymous_function] = STATE(2528), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1505), + [sym_integer] = ACTIONS(1505), + [sym_float] = ACTIONS(1505), + [sym_char] = ACTIONS(1505), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1505), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [sym_keyword] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [338] = { + [sym__expression] = STATE(1380), + [sym_block] = STATE(1380), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1380), + [sym_nil] = STATE(1380), + [sym__atom] = STATE(1380), + [sym_quoted_atom] = STATE(1380), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1380), + [sym_charlist] = STATE(1380), + [sym_sigil] = STATE(1380), + [sym_keywords] = STATE(1232), + [sym_pair] = STATE(1238), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1380), + [sym_tuple] = STATE(1380), + [sym_bitstring] = STATE(1380), + [sym_map] = STATE(1380), + [sym_unary_operator] = STATE(1380), + [sym_binary_operator] = STATE(1380), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1380), + [sym_call] = STATE(1380), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1380), + [sym_anonymous_function] = STATE(1380), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1507), + [sym_integer] = ACTIONS(1507), + [sym_float] = ACTIONS(1507), + [sym_char] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [339] = { + [sym__expression] = STATE(2524), + [sym_block] = STATE(2524), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2524), + [sym_nil] = STATE(2524), + [sym__atom] = STATE(2524), + [sym_quoted_atom] = STATE(2524), + [sym__quoted_i_double] = STATE(1219), + [sym__quoted_i_single] = STATE(1216), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2524), + [sym_charlist] = STATE(2524), + [sym_sigil] = STATE(2524), + [sym_keywords] = STATE(1363), + [sym_pair] = STATE(2118), + [sym__keyword] = STATE(598), + [sym_quoted_keyword] = STATE(598), + [sym_list] = STATE(2524), + [sym_tuple] = STATE(2524), + [sym_bitstring] = STATE(2524), + [sym_map] = STATE(2524), + [sym_unary_operator] = STATE(2524), + [sym_binary_operator] = STATE(2524), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2524), + [sym_call] = STATE(2524), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2524), + [sym_anonymous_function] = STATE(2524), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1509), + [sym_integer] = ACTIONS(1509), + [sym_float] = ACTIONS(1509), + [sym_char] = ACTIONS(1509), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1509), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [sym_keyword] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [340] = { + [sym__terminator] = STATE(797), + [sym__expression] = STATE(2633), + [sym_block] = STATE(2633), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(2633), + [sym_nil] = STATE(2633), + [sym__atom] = STATE(2633), + [sym_quoted_atom] = STATE(2633), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2633), + [sym_charlist] = STATE(2633), + [sym_sigil] = STATE(2633), + [sym_list] = STATE(2633), + [sym_tuple] = STATE(2633), + [sym_bitstring] = STATE(2633), + [sym_map] = STATE(2633), + [sym_unary_operator] = STATE(2633), + [sym_binary_operator] = STATE(2633), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2633), + [sym_call] = STATE(2633), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2633), + [sym_body] = STATE(3643), + [sym_anonymous_function] = STATE(2633), + [aux_sym__terminator_repeat1] = STATE(1029), + [aux_sym__terminator_token1] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1065), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1495), + [sym_integer] = ACTIONS(1495), + [sym_float] = ACTIONS(1495), + [sym_char] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [341] = { + [sym__expression] = STATE(2885), + [sym_block] = STATE(2885), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2885), + [sym_nil] = STATE(2885), + [sym__atom] = STATE(2885), + [sym_quoted_atom] = STATE(2885), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2885), + [sym_charlist] = STATE(2885), + [sym_sigil] = STATE(2885), + [sym__keywords_with_trailing_separator] = STATE(4859), + [sym_pair] = STATE(4217), + [sym__keyword] = STATE(834), + [sym_quoted_keyword] = STATE(834), + [sym_list] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_bitstring] = STATE(2885), + [sym_map] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_binary_operator] = STATE(2885), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2885), + [sym_call] = STATE(2885), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2885), + [sym_anonymous_function] = STATE(2885), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1201), + [sym_integer] = ACTIONS(1201), + [sym_float] = ACTIONS(1201), + [sym_char] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1093), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [342] = { + [sym__expression] = STATE(3312), + [sym_block] = STATE(3312), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3312), + [sym_nil] = STATE(3312), + [sym__atom] = STATE(3312), + [sym_quoted_atom] = STATE(3312), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3312), + [sym_charlist] = STATE(3312), + [sym_sigil] = STATE(3312), + [sym_keywords] = STATE(2287), + [sym_pair] = STATE(3096), + [sym__keyword] = STATE(879), + [sym_quoted_keyword] = STATE(879), + [sym_list] = STATE(3312), + [sym_tuple] = STATE(3312), + [sym_bitstring] = STATE(3312), + [sym_map] = STATE(3312), + [sym_unary_operator] = STATE(3312), + [sym_binary_operator] = STATE(3312), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3312), + [sym_call] = STATE(3312), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3312), + [sym_anonymous_function] = STATE(3312), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1513), + [sym_integer] = ACTIONS(1513), + [sym_float] = ACTIONS(1513), + [sym_char] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [343] = { + [sym__expression] = STATE(3305), + [sym_block] = STATE(3305), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3305), + [sym_nil] = STATE(3305), + [sym__atom] = STATE(3305), + [sym_quoted_atom] = STATE(3305), + [sym__quoted_i_double] = STATE(2012), + [sym__quoted_i_single] = STATE(2013), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3305), + [sym_charlist] = STATE(3305), + [sym_sigil] = STATE(3305), + [sym_keywords] = STATE(2286), + [sym_pair] = STATE(3096), + [sym__keyword] = STATE(879), + [sym_quoted_keyword] = STATE(879), + [sym_list] = STATE(3305), + [sym_tuple] = STATE(3305), + [sym_bitstring] = STATE(3305), + [sym_map] = STATE(3305), + [sym_unary_operator] = STATE(3305), + [sym_binary_operator] = STATE(3305), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3305), + [sym_call] = STATE(3305), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3305), + [sym_anonymous_function] = STATE(3305), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1525), + [sym_integer] = ACTIONS(1525), + [sym_float] = ACTIONS(1525), + [sym_char] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1525), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [sym_keyword] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [344] = { + [sym__expression] = STATE(1380), + [sym_block] = STATE(1380), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1380), + [sym_nil] = STATE(1380), + [sym__atom] = STATE(1380), + [sym_quoted_atom] = STATE(1380), + [sym__quoted_i_double] = STATE(1109), + [sym__quoted_i_single] = STATE(1108), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1380), + [sym_charlist] = STATE(1380), + [sym_sigil] = STATE(1380), + [sym_keywords] = STATE(1150), + [sym_pair] = STATE(1238), + [sym__keyword] = STATE(883), + [sym_quoted_keyword] = STATE(883), + [sym_list] = STATE(1380), + [sym_tuple] = STATE(1380), + [sym_bitstring] = STATE(1380), + [sym_map] = STATE(1380), + [sym_unary_operator] = STATE(1380), + [sym_binary_operator] = STATE(1380), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1380), + [sym_call] = STATE(1380), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1380), + [sym_anonymous_function] = STATE(1380), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1507), + [sym_integer] = ACTIONS(1507), + [sym_float] = ACTIONS(1507), + [sym_char] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [sym_keyword] = ACTIONS(221), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [345] = { + [sym__expression] = STATE(3322), + [sym_block] = STATE(3322), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3322), + [sym_nil] = STATE(3322), + [sym__atom] = STATE(3322), + [sym_quoted_atom] = STATE(3322), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3322), + [sym_charlist] = STATE(3322), + [sym_sigil] = STATE(3322), + [sym_list] = STATE(3322), + [sym_tuple] = STATE(3322), + [sym_bitstring] = STATE(3322), + [sym_map] = STATE(3322), + [sym_unary_operator] = STATE(3322), + [sym_binary_operator] = STATE(3322), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3322), + [sym_call] = STATE(3322), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3322), + [sym_anonymous_function] = STATE(3322), + [aux_sym__terminator_token1] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1527), + [sym_integer] = ACTIONS(1527), + [sym_float] = ACTIONS(1527), + [sym_char] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_end] = ACTIONS(1321), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [346] = { + [sym__expression] = STATE(3348), + [sym_block] = STATE(3348), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3348), + [sym_nil] = STATE(3348), + [sym__atom] = STATE(3348), + [sym_quoted_atom] = STATE(3348), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3348), + [sym_charlist] = STATE(3348), + [sym_sigil] = STATE(3348), + [sym_list] = STATE(3348), + [sym_tuple] = STATE(3348), + [sym_bitstring] = STATE(3348), + [sym_map] = STATE(3348), + [sym_unary_operator] = STATE(3348), + [sym_binary_operator] = STATE(3348), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3348), + [sym_call] = STATE(3348), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3348), + [sym_anonymous_function] = STATE(3348), + [aux_sym__terminator_token1] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1331), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1529), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1529), + [sym_char] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [347] = { + [sym__expression] = STATE(3348), + [sym_block] = STATE(3348), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3348), + [sym_nil] = STATE(3348), + [sym__atom] = STATE(3348), + [sym_quoted_atom] = STATE(3348), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3348), + [sym_charlist] = STATE(3348), + [sym_sigil] = STATE(3348), + [sym_list] = STATE(3348), + [sym_tuple] = STATE(3348), + [sym_bitstring] = STATE(3348), + [sym_map] = STATE(3348), + [sym_unary_operator] = STATE(3348), + [sym_binary_operator] = STATE(3348), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3348), + [sym_call] = STATE(3348), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3348), + [sym_anonymous_function] = STATE(3348), + [aux_sym__terminator_token1] = ACTIONS(1319), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1321), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1529), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1529), + [sym_char] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [348] = { + [sym__expression] = STATE(3322), + [sym_block] = STATE(3322), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3322), + [sym_nil] = STATE(3322), + [sym__atom] = STATE(3322), + [sym_quoted_atom] = STATE(3322), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3322), + [sym_charlist] = STATE(3322), + [sym_sigil] = STATE(3322), + [sym_list] = STATE(3322), + [sym_tuple] = STATE(3322), + [sym_bitstring] = STATE(3322), + [sym_map] = STATE(3322), + [sym_unary_operator] = STATE(3322), + [sym_binary_operator] = STATE(3322), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3322), + [sym_call] = STATE(3322), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3322), + [sym_anonymous_function] = STATE(3322), + [aux_sym__terminator_token1] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1527), + [sym_integer] = ACTIONS(1527), + [sym_float] = ACTIONS(1527), + [sym_char] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_end] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [349] = { + [sym__expression] = STATE(3348), + [sym_block] = STATE(3348), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3348), + [sym_nil] = STATE(3348), + [sym__atom] = STATE(3348), + [sym_quoted_atom] = STATE(3348), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3348), + [sym_charlist] = STATE(3348), + [sym_sigil] = STATE(3348), + [sym_list] = STATE(3348), + [sym_tuple] = STATE(3348), + [sym_bitstring] = STATE(3348), + [sym_map] = STATE(3348), + [sym_unary_operator] = STATE(3348), + [sym_binary_operator] = STATE(3348), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3348), + [sym_call] = STATE(3348), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3348), + [sym_anonymous_function] = STATE(3348), + [aux_sym__terminator_token1] = ACTIONS(1325), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1327), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1529), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1529), + [sym_char] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [350] = { + [sym__expression] = STATE(3322), + [sym_block] = STATE(3322), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3322), + [sym_nil] = STATE(3322), + [sym__atom] = STATE(3322), + [sym_quoted_atom] = STATE(3322), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3322), + [sym_charlist] = STATE(3322), + [sym_sigil] = STATE(3322), + [sym_list] = STATE(3322), + [sym_tuple] = STATE(3322), + [sym_bitstring] = STATE(3322), + [sym_map] = STATE(3322), + [sym_unary_operator] = STATE(3322), + [sym_binary_operator] = STATE(3322), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3322), + [sym_call] = STATE(3322), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3322), + [sym_anonymous_function] = STATE(3322), + [aux_sym__terminator_token1] = ACTIONS(1329), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1527), + [sym_integer] = ACTIONS(1527), + [sym_float] = ACTIONS(1527), + [sym_char] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_end] = ACTIONS(1331), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [351] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1531), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [352] = { + [sym__expression] = STATE(3321), + [sym_block] = STATE(3321), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3321), + [sym_nil] = STATE(3321), + [sym__atom] = STATE(3321), + [sym_quoted_atom] = STATE(3321), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3321), + [sym_charlist] = STATE(3321), + [sym_sigil] = STATE(3321), + [sym_list] = STATE(3321), + [sym_tuple] = STATE(3321), + [sym_bitstring] = STATE(3321), + [sym_map] = STATE(3321), + [sym_unary_operator] = STATE(3321), + [sym__capture_expression] = STATE(2347), + [sym_binary_operator] = STATE(3321), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3321), + [sym_call] = STATE(3321), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3321), + [sym_anonymous_function] = STATE(3321), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1535), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1537), + [sym_integer] = ACTIONS(1539), + [sym_float] = ACTIONS(1537), + [sym_char] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [353] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4849), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [354] = { + [sym__expression] = STATE(1525), + [sym_block] = STATE(1525), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1525), + [sym_nil] = STATE(1525), + [sym__atom] = STATE(1525), + [sym_quoted_atom] = STATE(1525), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1525), + [sym_charlist] = STATE(1525), + [sym_sigil] = STATE(1525), + [sym_list] = STATE(1525), + [sym_tuple] = STATE(1525), + [sym_bitstring] = STATE(1525), + [sym_map] = STATE(1525), + [sym_unary_operator] = STATE(1525), + [sym__capture_expression] = STATE(1371), + [sym_binary_operator] = STATE(1525), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1525), + [sym_call] = STATE(1525), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1525), + [sym_anonymous_function] = STATE(1525), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1551), + [sym_integer] = ACTIONS(1553), + [sym_float] = ACTIONS(1551), + [sym_char] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [355] = { [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__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2459), + [sym_nil] = STATE(2459), + [sym__atom] = STATE(2459), + [sym_quoted_atom] = STATE(2459), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), [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_unary_operator] = STATE(2459), + [sym__capture_expression] = STATE(1371), + [sym_binary_operator] = STATE(2459), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = 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__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1555), + [sym_integer] = ACTIONS(1553), + [sym_float] = ACTIONS(1555), + [sym_char] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), }, - [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), + [356] = { + [sym__expression] = STATE(2785), + [sym_block] = STATE(2785), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2785), + [sym_nil] = STATE(2785), + [sym__atom] = STATE(2785), + [sym_quoted_atom] = STATE(2785), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2785), + [sym_charlist] = STATE(2785), + [sym_sigil] = STATE(2785), + [sym_list] = STATE(2785), + [sym_tuple] = STATE(2785), + [sym_bitstring] = STATE(2785), + [sym_map] = STATE(2785), + [sym_unary_operator] = STATE(2785), + [sym__capture_expression] = STATE(2347), + [sym_binary_operator] = STATE(2785), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2785), + [sym_call] = STATE(2785), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2785), + [sym_anonymous_function] = STATE(2785), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1535), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1557), + [sym_integer] = ACTIONS(1539), + [sym_float] = ACTIONS(1557), + [sym_char] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(895), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [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), + [357] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1559), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(895), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), }, - [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), + [358] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), [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_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4841), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(667), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(671), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), }, - [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), + [359] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1563), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(895), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), }, - [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), + [360] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1565), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), }, - [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), + [361] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1567), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), }, - [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), + [362] = { + [sym__expression] = STATE(2961), + [sym_block] = STATE(2961), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2961), + [sym_nil] = STATE(2961), + [sym__atom] = STATE(2961), + [sym_quoted_atom] = STATE(2961), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2961), + [sym_charlist] = STATE(2961), + [sym_sigil] = STATE(2961), + [sym_list] = STATE(2961), + [sym_tuple] = STATE(2961), + [sym_bitstring] = STATE(2961), + [sym_map] = STATE(2961), + [sym_unary_operator] = STATE(2961), + [sym__capture_expression] = STATE(1779), + [sym_binary_operator] = STATE(2961), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2961), + [sym_call] = STATE(2961), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2961), + [sym_anonymous_function] = STATE(2961), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1569), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1571), + [sym_integer] = ACTIONS(1573), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), }, - [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), + [363] = { + [sym__expression] = STATE(2961), + [sym_block] = STATE(2961), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2961), + [sym_nil] = STATE(2961), + [sym__atom] = STATE(2961), + [sym_quoted_atom] = STATE(2961), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2961), + [sym_charlist] = STATE(2961), + [sym_sigil] = STATE(2961), + [sym_list] = STATE(2961), + [sym_tuple] = STATE(2961), + [sym_bitstring] = STATE(2961), + [sym_map] = STATE(2961), + [sym_unary_operator] = STATE(2961), + [sym__capture_expression] = STATE(1808), + [sym_binary_operator] = STATE(2961), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2961), + [sym_call] = STATE(2961), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2961), + [sym_anonymous_function] = STATE(2961), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1569), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1571), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1571), + [sym_char] = ACTIONS(1571), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(381), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1503), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), }, - [1139] = { + [364] = { + [sym__expression] = STATE(2785), + [sym_block] = STATE(2785), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2785), + [sym_nil] = STATE(2785), + [sym__atom] = STATE(2785), + [sym_quoted_atom] = STATE(2785), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2785), + [sym_charlist] = STATE(2785), + [sym_sigil] = STATE(2785), + [sym_list] = STATE(2785), + [sym_tuple] = STATE(2785), + [sym_bitstring] = STATE(2785), + [sym_map] = STATE(2785), + [sym_unary_operator] = STATE(2785), + [sym__capture_expression] = STATE(2309), + [sym_binary_operator] = STATE(2785), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2785), + [sym_call] = STATE(2785), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2785), + [sym_anonymous_function] = STATE(2785), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1535), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1557), + [sym_integer] = ACTIONS(1577), + [sym_float] = ACTIONS(1557), + [sym_char] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [365] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4833), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1579), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [366] = { + [sym__expression] = STATE(3319), + [sym_block] = STATE(3319), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3319), + [sym_nil] = STATE(3319), + [sym__atom] = STATE(3319), + [sym_quoted_atom] = STATE(3319), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3319), + [sym_charlist] = STATE(3319), + [sym_sigil] = STATE(3319), + [sym_list] = STATE(3319), + [sym_tuple] = STATE(3319), + [sym_bitstring] = STATE(3319), + [sym_map] = STATE(3319), + [sym_unary_operator] = STATE(3319), + [sym_binary_operator] = STATE(3319), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3319), + [sym_call] = STATE(3319), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3319), + [sym_anonymous_function] = STATE(3319), + [ts_builtin_sym_end] = ACTIONS(1581), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1583), + [sym_integer] = ACTIONS(1583), + [sym_float] = ACTIONS(1583), + [sym_char] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [367] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1585), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [368] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4825), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [369] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4863), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [370] = { + [sym__expression] = STATE(3286), + [sym_block] = STATE(3286), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3286), + [sym_nil] = STATE(3286), + [sym__atom] = STATE(3286), + [sym_quoted_atom] = STATE(3286), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3286), + [sym_charlist] = STATE(3286), + [sym_sigil] = STATE(3286), + [sym_list] = STATE(3286), + [sym_tuple] = STATE(3286), + [sym_bitstring] = STATE(3286), + [sym_map] = STATE(3286), + [sym_unary_operator] = STATE(3286), + [sym__capture_expression] = STATE(3281), + [sym_binary_operator] = STATE(3286), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3286), + [sym_call] = STATE(3286), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3286), + [sym_anonymous_function] = STATE(3286), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1591), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1593), + [sym_integer] = ACTIONS(1595), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [371] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1597), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [372] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1599), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [373] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1601), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [374] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1603), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [375] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1605), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [376] = { + [sym__expression] = STATE(1861), + [sym_block] = STATE(1861), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1861), + [sym_nil] = STATE(1861), + [sym__atom] = STATE(1861), + [sym_quoted_atom] = STATE(1861), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1861), + [sym_charlist] = STATE(1861), + [sym_sigil] = STATE(1861), + [sym_list] = STATE(1861), + [sym_tuple] = STATE(1861), + [sym_bitstring] = STATE(1861), + [sym_map] = STATE(1861), + [sym_unary_operator] = STATE(1861), + [sym__capture_expression] = STATE(1683), + [sym_binary_operator] = STATE(1861), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1861), + [sym_call] = STATE(1861), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1861), + [sym_anonymous_function] = STATE(1861), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1607), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1611), + [sym_float] = ACTIONS(1609), + [sym_char] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [377] = { + [sym__expression] = STATE(2601), + [sym_block] = STATE(2601), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2601), + [sym_nil] = STATE(2601), + [sym__atom] = STATE(2601), + [sym_quoted_atom] = STATE(2601), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2601), + [sym_charlist] = STATE(2601), + [sym_sigil] = STATE(2601), + [sym_list] = STATE(2601), + [sym_tuple] = STATE(2601), + [sym_bitstring] = STATE(2601), + [sym_map] = STATE(2601), + [sym_unary_operator] = STATE(2601), + [sym__capture_expression] = STATE(1331), + [sym_binary_operator] = STATE(2601), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2601), + [sym_call] = STATE(2601), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2601), + [sym_anonymous_function] = STATE(2601), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1613), + [sym_integer] = ACTIONS(1615), + [sym_float] = ACTIONS(1613), + [sym_char] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1613), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [378] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4781), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [379] = { + [sym__expression] = STATE(3063), + [sym_block] = STATE(3063), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3063), + [sym_nil] = STATE(3063), + [sym__atom] = STATE(3063), + [sym_quoted_atom] = STATE(3063), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3063), + [sym_charlist] = STATE(3063), + [sym_sigil] = STATE(3063), + [sym_list] = STATE(3063), + [sym_tuple] = STATE(3063), + [sym_bitstring] = STATE(3063), + [sym_map] = STATE(3063), + [sym_unary_operator] = STATE(3063), + [sym__capture_expression] = STATE(3097), + [sym_binary_operator] = STATE(3063), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3063), + [sym_call] = STATE(3063), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3063), + [sym_anonymous_function] = STATE(3063), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1621), + [sym_integer] = ACTIONS(1623), + [sym_float] = ACTIONS(1621), + [sym_char] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [380] = { + [sym__expression] = STATE(2491), + [sym_block] = STATE(2491), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2491), + [sym_nil] = STATE(2491), + [sym__atom] = STATE(2491), + [sym_quoted_atom] = STATE(2491), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2491), + [sym_charlist] = STATE(2491), + [sym_sigil] = STATE(2491), + [sym_list] = STATE(2491), + [sym_tuple] = STATE(2491), + [sym_bitstring] = STATE(2491), + [sym_map] = STATE(2491), + [sym_unary_operator] = STATE(2491), + [sym__capture_expression] = STATE(2490), + [sym_binary_operator] = STATE(2491), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2491), + [sym_call] = STATE(2491), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2491), + [sym_anonymous_function] = STATE(2491), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1625), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1627), + [sym_integer] = ACTIONS(1629), + [sym_float] = ACTIONS(1627), + [sym_char] = ACTIONS(1627), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [381] = { + [sym__expression] = STATE(3212), + [sym_block] = STATE(3212), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3212), + [sym_nil] = STATE(3212), + [sym__atom] = STATE(3212), + [sym_quoted_atom] = STATE(3212), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3212), + [sym_charlist] = STATE(3212), + [sym_sigil] = STATE(3212), + [sym_list] = STATE(3212), + [sym_tuple] = STATE(3212), + [sym_bitstring] = STATE(3212), + [sym_map] = STATE(3212), + [sym_unary_operator] = STATE(3212), + [sym__capture_expression] = STATE(1683), + [sym_binary_operator] = STATE(3212), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3212), + [sym_call] = STATE(3212), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3212), + [sym_anonymous_function] = STATE(3212), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1607), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1631), + [sym_integer] = ACTIONS(1611), + [sym_float] = ACTIONS(1631), + [sym_char] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [382] = { + [sym__expression] = STATE(3321), + [sym_block] = STATE(3321), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3321), + [sym_nil] = STATE(3321), + [sym__atom] = STATE(3321), + [sym_quoted_atom] = STATE(3321), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3321), + [sym_charlist] = STATE(3321), + [sym_sigil] = STATE(3321), + [sym_list] = STATE(3321), + [sym_tuple] = STATE(3321), + [sym_bitstring] = STATE(3321), + [sym_map] = STATE(3321), + [sym_unary_operator] = STATE(3321), + [sym__capture_expression] = STATE(2309), + [sym_binary_operator] = STATE(3321), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3321), + [sym_call] = STATE(3321), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3321), + [sym_anonymous_function] = STATE(3321), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1535), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1537), + [sym_integer] = ACTIONS(1577), + [sym_float] = ACTIONS(1537), + [sym_char] = ACTIONS(1537), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [383] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4817), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [384] = { + [sym__expression] = STATE(2439), + [sym_block] = STATE(2439), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2439), + [sym_nil] = STATE(2439), + [sym__atom] = STATE(2439), + [sym_quoted_atom] = STATE(2439), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2439), + [sym_charlist] = STATE(2439), + [sym_sigil] = STATE(2439), + [sym_list] = STATE(2439), + [sym_tuple] = STATE(2439), + [sym_bitstring] = STATE(2439), + [sym_map] = STATE(2439), + [sym_unary_operator] = STATE(2439), + [sym__capture_expression] = STATE(2423), + [sym_binary_operator] = STATE(2439), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2439), + [sym_call] = STATE(2439), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2439), + [sym_anonymous_function] = STATE(2439), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1635), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1637), + [sym_integer] = ACTIONS(1639), + [sym_float] = ACTIONS(1637), + [sym_char] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [385] = { + [sym__expression] = STATE(2439), + [sym_block] = STATE(2439), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2439), + [sym_nil] = STATE(2439), + [sym__atom] = STATE(2439), + [sym_quoted_atom] = STATE(2439), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2439), + [sym_charlist] = STATE(2439), + [sym_sigil] = STATE(2439), + [sym_list] = STATE(2439), + [sym_tuple] = STATE(2439), + [sym_bitstring] = STATE(2439), + [sym_map] = STATE(2439), + [sym_unary_operator] = STATE(2439), + [sym__capture_expression] = STATE(2438), + [sym_binary_operator] = STATE(2439), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2439), + [sym_call] = STATE(2439), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2439), + [sym_anonymous_function] = STATE(2439), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1635), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1637), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1637), + [sym_char] = ACTIONS(1637), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [386] = { + [sym__expression] = STATE(2491), + [sym_block] = STATE(2491), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2491), + [sym_nil] = STATE(2491), + [sym__atom] = STATE(2491), + [sym_quoted_atom] = STATE(2491), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2491), + [sym_charlist] = STATE(2491), + [sym_sigil] = STATE(2491), + [sym_list] = STATE(2491), + [sym_tuple] = STATE(2491), + [sym_bitstring] = STATE(2491), + [sym_map] = STATE(2491), + [sym_unary_operator] = STATE(2491), + [sym__capture_expression] = STATE(2464), + [sym_binary_operator] = STATE(2491), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2491), + [sym_call] = STATE(2491), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2491), + [sym_anonymous_function] = STATE(2491), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1625), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1627), + [sym_integer] = ACTIONS(1643), + [sym_float] = ACTIONS(1627), + [sym_char] = ACTIONS(1627), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [387] = { + [sym__expression] = STATE(3212), + [sym_block] = STATE(3212), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3212), + [sym_nil] = STATE(3212), + [sym__atom] = STATE(3212), + [sym_quoted_atom] = STATE(3212), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3212), + [sym_charlist] = STATE(3212), + [sym_sigil] = STATE(3212), + [sym_list] = STATE(3212), + [sym_tuple] = STATE(3212), + [sym_bitstring] = STATE(3212), + [sym_map] = STATE(3212), + [sym_unary_operator] = STATE(3212), + [sym__capture_expression] = STATE(1689), + [sym_binary_operator] = STATE(3212), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3212), + [sym_call] = STATE(3212), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3212), + [sym_anonymous_function] = STATE(3212), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1607), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1631), + [sym_integer] = ACTIONS(1645), + [sym_float] = ACTIONS(1631), + [sym_char] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [388] = { + [sym__expression] = STATE(3099), + [sym_block] = STATE(3099), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3099), + [sym_nil] = STATE(3099), + [sym__atom] = STATE(3099), + [sym_quoted_atom] = STATE(3099), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3099), + [sym_charlist] = STATE(3099), + [sym_sigil] = STATE(3099), + [sym_list] = STATE(3099), + [sym_tuple] = STATE(3099), + [sym_bitstring] = STATE(3099), + [sym_map] = STATE(3099), + [sym_unary_operator] = STATE(3099), + [sym__capture_expression] = STATE(1683), + [sym_binary_operator] = STATE(3099), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3099), + [sym_call] = STATE(3099), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3099), + [sym_anonymous_function] = STATE(3099), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1607), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1647), + [sym_integer] = ACTIONS(1611), + [sym_float] = ACTIONS(1647), + [sym_char] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [389] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1649), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [390] = { + [sym__expression] = STATE(2601), + [sym_block] = STATE(2601), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2601), + [sym_nil] = STATE(2601), + [sym__atom] = STATE(2601), + [sym_quoted_atom] = STATE(2601), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2601), + [sym_charlist] = STATE(2601), + [sym_sigil] = STATE(2601), + [sym_list] = STATE(2601), + [sym_tuple] = STATE(2601), + [sym_bitstring] = STATE(2601), + [sym_map] = STATE(2601), + [sym_unary_operator] = STATE(2601), + [sym__capture_expression] = STATE(1371), + [sym_binary_operator] = STATE(2601), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2601), + [sym_call] = STATE(2601), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2601), + [sym_anonymous_function] = STATE(2601), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1613), + [sym_integer] = ACTIONS(1553), + [sym_float] = ACTIONS(1613), + [sym_char] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1613), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [391] = { + [sym__expression] = STATE(2644), + [sym_block] = STATE(2644), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(2644), + [sym_nil] = STATE(2644), + [sym__atom] = STATE(2644), + [sym_quoted_atom] = STATE(2644), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(2644), + [sym_charlist] = STATE(2644), + [sym_sigil] = STATE(2644), + [sym_list] = STATE(2644), + [sym_tuple] = STATE(2644), + [sym_bitstring] = STATE(2644), + [sym_map] = STATE(2644), + [sym_unary_operator] = STATE(2644), + [sym_binary_operator] = STATE(2644), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(2644), + [sym_call] = STATE(2644), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(2644), + [sym_anonymous_function] = STATE(2644), + [ts_builtin_sym_end] = ACTIONS(1651), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1653), + [sym_integer] = ACTIONS(1653), + [sym_float] = ACTIONS(1653), + [sym_char] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [392] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1655), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [393] = { + [sym__expression] = STATE(1525), + [sym_block] = STATE(1525), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1525), + [sym_nil] = STATE(1525), + [sym__atom] = STATE(1525), + [sym_quoted_atom] = STATE(1525), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1525), + [sym_charlist] = STATE(1525), + [sym_sigil] = STATE(1525), + [sym_list] = STATE(1525), + [sym_tuple] = STATE(1525), + [sym_bitstring] = STATE(1525), + [sym_map] = STATE(1525), + [sym_unary_operator] = STATE(1525), + [sym__capture_expression] = STATE(1331), + [sym_binary_operator] = STATE(1525), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1525), + [sym_call] = STATE(1525), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1525), + [sym_anonymous_function] = STATE(1525), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1551), + [sym_integer] = ACTIONS(1615), + [sym_float] = ACTIONS(1551), + [sym_char] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [394] = { + [sym__expression] = STATE(1384), + [sym_block] = STATE(1384), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1384), + [sym_nil] = STATE(1384), + [sym__atom] = STATE(1384), + [sym_quoted_atom] = STATE(1384), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1384), + [sym_charlist] = STATE(1384), + [sym_sigil] = STATE(1384), + [sym_list] = STATE(1384), + [sym_tuple] = STATE(1384), + [sym_bitstring] = STATE(1384), + [sym_map] = STATE(1384), + [sym_unary_operator] = STATE(1384), + [sym__capture_expression] = STATE(1158), + [sym_binary_operator] = STATE(1384), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1384), + [sym_call] = STATE(1384), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1384), + [sym_anonymous_function] = STATE(1384), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1657), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1659), + [sym_integer] = ACTIONS(1661), + [sym_float] = ACTIONS(1659), + [sym_char] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [395] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1663), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [396] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4856), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [397] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4809), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1667), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [398] = { + [sym__expression] = STATE(3063), + [sym_block] = STATE(3063), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3063), + [sym_nil] = STATE(3063), + [sym__atom] = STATE(3063), + [sym_quoted_atom] = STATE(3063), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3063), + [sym_charlist] = STATE(3063), + [sym_sigil] = STATE(3063), + [sym_list] = STATE(3063), + [sym_tuple] = STATE(3063), + [sym_bitstring] = STATE(3063), + [sym_map] = STATE(3063), + [sym_unary_operator] = STATE(3063), + [sym__capture_expression] = STATE(3064), + [sym_binary_operator] = STATE(3063), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3063), + [sym_call] = STATE(3063), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3063), + [sym_anonymous_function] = STATE(3063), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1619), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1621), + [sym_integer] = ACTIONS(1669), + [sym_float] = ACTIONS(1621), + [sym_char] = ACTIONS(1621), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [399] = { + [sym__expression] = STATE(3243), + [sym_block] = STATE(3243), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3243), + [sym_nil] = STATE(3243), + [sym__atom] = STATE(3243), + [sym_quoted_atom] = STATE(3243), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3243), + [sym_charlist] = STATE(3243), + [sym_sigil] = STATE(3243), + [sym_list] = STATE(3243), + [sym_tuple] = STATE(3243), + [sym_bitstring] = STATE(3243), + [sym_map] = STATE(3243), + [sym_unary_operator] = STATE(3243), + [sym__capture_expression] = STATE(3242), + [sym_binary_operator] = STATE(3243), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3243), + [sym_call] = STATE(3243), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3243), + [sym_anonymous_function] = STATE(3243), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1671), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1673), + [sym_integer] = ACTIONS(1675), + [sym_float] = ACTIONS(1673), + [sym_char] = ACTIONS(1673), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [400] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1677), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [401] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4821), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [402] = { + [sym__expression] = STATE(1384), + [sym_block] = STATE(1384), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1384), + [sym_nil] = STATE(1384), + [sym__atom] = STATE(1384), + [sym_quoted_atom] = STATE(1384), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1384), + [sym_charlist] = STATE(1384), + [sym_sigil] = STATE(1384), + [sym_list] = STATE(1384), + [sym_tuple] = STATE(1384), + [sym_bitstring] = STATE(1384), + [sym_map] = STATE(1384), + [sym_unary_operator] = STATE(1384), + [sym__capture_expression] = STATE(1220), + [sym_binary_operator] = STATE(1384), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1384), + [sym_call] = STATE(1384), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1384), + [sym_anonymous_function] = STATE(1384), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1657), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1659), + [sym_integer] = ACTIONS(1681), + [sym_float] = ACTIONS(1659), + [sym_char] = ACTIONS(1659), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1659), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [403] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1683), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [404] = { + [sym__expression] = STATE(2117), + [sym_block] = STATE(2117), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2117), + [sym_nil] = STATE(2117), + [sym__atom] = STATE(2117), + [sym_quoted_atom] = STATE(2117), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2117), + [sym_charlist] = STATE(2117), + [sym_sigil] = STATE(2117), + [sym_list] = STATE(2117), + [sym_tuple] = STATE(2117), + [sym_bitstring] = STATE(2117), + [sym_map] = STATE(2117), + [sym_unary_operator] = STATE(2117), + [sym__capture_expression] = STATE(1158), + [sym_binary_operator] = STATE(2117), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2117), + [sym_call] = STATE(2117), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2117), + [sym_anonymous_function] = STATE(2117), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1657), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1685), + [sym_integer] = ACTIONS(1661), + [sym_float] = ACTIONS(1685), + [sym_char] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [405] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1687), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [406] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1689), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [407] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1691), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [408] = { + [sym__expression] = STATE(3099), + [sym_block] = STATE(3099), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3099), + [sym_nil] = STATE(3099), + [sym__atom] = STATE(3099), + [sym_quoted_atom] = STATE(3099), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3099), + [sym_charlist] = STATE(3099), + [sym_sigil] = STATE(3099), + [sym_list] = STATE(3099), + [sym_tuple] = STATE(3099), + [sym_bitstring] = STATE(3099), + [sym_map] = STATE(3099), + [sym_unary_operator] = STATE(3099), + [sym__capture_expression] = STATE(1689), + [sym_binary_operator] = STATE(3099), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3099), + [sym_call] = STATE(3099), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3099), + [sym_anonymous_function] = STATE(3099), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1607), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1647), + [sym_integer] = ACTIONS(1645), + [sym_float] = ACTIONS(1647), + [sym_char] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [409] = { + [sym__expression] = STATE(3319), + [sym_block] = STATE(3319), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3319), + [sym_nil] = STATE(3319), + [sym__atom] = STATE(3319), + [sym_quoted_atom] = STATE(3319), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3319), + [sym_charlist] = STATE(3319), + [sym_sigil] = STATE(3319), + [sym_list] = STATE(3319), + [sym_tuple] = STATE(3319), + [sym_bitstring] = STATE(3319), + [sym_map] = STATE(3319), + [sym_unary_operator] = STATE(3319), + [sym_binary_operator] = STATE(3319), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3319), + [sym_call] = STATE(3319), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3319), + [sym_anonymous_function] = STATE(3319), + [ts_builtin_sym_end] = ACTIONS(1693), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1583), + [sym_integer] = ACTIONS(1583), + [sym_float] = ACTIONS(1583), + [sym_char] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [410] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1695), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [411] = { + [sym__expression] = STATE(2869), + [sym_block] = STATE(2869), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2869), + [sym_nil] = STATE(2869), + [sym__atom] = STATE(2869), + [sym_quoted_atom] = STATE(2869), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2869), + [sym_charlist] = STATE(2869), + [sym_sigil] = STATE(2869), + [sym_list] = STATE(2869), + [sym_tuple] = STATE(2869), + [sym_bitstring] = STATE(2869), + [sym_map] = STATE(2869), + [sym_unary_operator] = STATE(2869), + [sym__capture_expression] = STATE(1487), + [sym_binary_operator] = STATE(2869), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2869), + [sym_call] = STATE(2869), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2869), + [sym_anonymous_function] = STATE(2869), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1697), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1699), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1699), + [sym_char] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [412] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1703), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [413] = { + [sym__expression] = STATE(2117), + [sym_block] = STATE(2117), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2117), + [sym_nil] = STATE(2117), + [sym__atom] = STATE(2117), + [sym_quoted_atom] = STATE(2117), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2117), + [sym_charlist] = STATE(2117), + [sym_sigil] = STATE(2117), + [sym_list] = STATE(2117), + [sym_tuple] = STATE(2117), + [sym_bitstring] = STATE(2117), + [sym_map] = STATE(2117), + [sym_unary_operator] = STATE(2117), + [sym__capture_expression] = STATE(1220), + [sym_binary_operator] = STATE(2117), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2117), + [sym_call] = STATE(2117), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2117), + [sym_anonymous_function] = STATE(2117), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1657), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1685), + [sym_integer] = ACTIONS(1681), + [sym_float] = ACTIONS(1685), + [sym_char] = ACTIONS(1685), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [414] = { + [sym__expression] = STATE(3319), + [sym_block] = STATE(3319), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3319), + [sym_nil] = STATE(3319), + [sym__atom] = STATE(3319), + [sym_quoted_atom] = STATE(3319), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3319), + [sym_charlist] = STATE(3319), + [sym_sigil] = STATE(3319), + [sym_list] = STATE(3319), + [sym_tuple] = STATE(3319), + [sym_bitstring] = STATE(3319), + [sym_map] = STATE(3319), + [sym_unary_operator] = STATE(3319), + [sym_binary_operator] = STATE(3319), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3319), + [sym_call] = STATE(3319), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3319), + [sym_anonymous_function] = STATE(3319), + [ts_builtin_sym_end] = ACTIONS(1705), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1583), + [sym_integer] = ACTIONS(1583), + [sym_float] = ACTIONS(1583), + [sym_char] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [415] = { + [sym__expression] = STATE(3243), + [sym_block] = STATE(3243), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3243), + [sym_nil] = STATE(3243), + [sym__atom] = STATE(3243), + [sym_quoted_atom] = STATE(3243), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3243), + [sym_charlist] = STATE(3243), + [sym_sigil] = STATE(3243), + [sym_list] = STATE(3243), + [sym_tuple] = STATE(3243), + [sym_bitstring] = STATE(3243), + [sym_map] = STATE(3243), + [sym_unary_operator] = STATE(3243), + [sym__capture_expression] = STATE(3236), + [sym_binary_operator] = STATE(3243), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3243), + [sym_call] = STATE(3243), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3243), + [sym_anonymous_function] = STATE(3243), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1671), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1673), + [sym_integer] = ACTIONS(1707), + [sym_float] = ACTIONS(1673), + [sym_char] = ACTIONS(1673), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [416] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1709), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [417] = { + [sym__expression] = STATE(2986), + [sym_block] = STATE(2986), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2986), + [sym_nil] = STATE(2986), + [sym__atom] = STATE(2986), + [sym_quoted_atom] = STATE(2986), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2986), + [sym_charlist] = STATE(2986), + [sym_sigil] = STATE(2986), + [sym_list] = STATE(2986), + [sym_tuple] = STATE(2986), + [sym_bitstring] = STATE(2986), + [sym_map] = STATE(2986), + [sym_unary_operator] = STATE(2986), + [sym__capture_expression] = STATE(2977), + [sym_binary_operator] = STATE(2986), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2986), + [sym_call] = STATE(2986), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2986), + [sym_anonymous_function] = STATE(2986), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1711), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1713), + [sym_integer] = ACTIONS(1715), + [sym_float] = ACTIONS(1713), + [sym_char] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [418] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1717), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [419] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1719), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [420] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1721), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [421] = { + [sym__expression] = STATE(1959), + [sym_block] = STATE(1959), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1959), + [sym_nil] = STATE(1959), + [sym__atom] = STATE(1959), + [sym_quoted_atom] = STATE(1959), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1959), + [sym_charlist] = STATE(1959), + [sym_sigil] = STATE(1959), + [sym_list] = STATE(1959), + [sym_tuple] = STATE(1959), + [sym_bitstring] = STATE(1959), + [sym_map] = STATE(1959), + [sym_unary_operator] = STATE(1959), + [sym__capture_expression] = STATE(1779), + [sym_binary_operator] = STATE(1959), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1959), + [sym_call] = STATE(1959), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1959), + [sym_anonymous_function] = STATE(1959), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1569), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1723), + [sym_integer] = ACTIONS(1573), + [sym_float] = ACTIONS(1723), + [sym_char] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [422] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1725), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [423] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1727), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [424] = { + [sym__expression] = STATE(2459), + [sym_block] = STATE(2459), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2459), + [sym_nil] = STATE(2459), + [sym__atom] = STATE(2459), + [sym_quoted_atom] = STATE(2459), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2459), + [sym_charlist] = STATE(2459), + [sym_sigil] = STATE(2459), + [sym_list] = STATE(2459), + [sym_tuple] = STATE(2459), + [sym_bitstring] = STATE(2459), + [sym_map] = STATE(2459), + [sym_unary_operator] = STATE(2459), + [sym__capture_expression] = STATE(1331), + [sym_binary_operator] = STATE(2459), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2459), + [sym_call] = STATE(2459), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2459), + [sym_anonymous_function] = STATE(2459), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1549), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1555), + [sym_integer] = ACTIONS(1615), + [sym_float] = ACTIONS(1555), + [sym_char] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [425] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1729), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [426] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1731), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [427] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4801), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [428] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1735), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [429] = { + [sym__expression] = STATE(3394), + [sym_block] = STATE(3394), + [sym__identifier] = STATE(108), + [sym_identifier] = STATE(108), + [sym_special_identifier] = STATE(108), + [sym_boolean] = STATE(3394), + [sym_nil] = STATE(3394), + [sym__atom] = STATE(3393), + [sym_quoted_atom] = STATE(3393), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3394), + [sym_charlist] = STATE(3394), + [sym_sigil] = STATE(3394), + [sym_list] = STATE(3394), + [sym_tuple] = STATE(3394), + [sym_bitstring] = STATE(3394), + [sym_map] = STATE(3394), + [sym_struct] = STATE(4812), + [sym_unary_operator] = STATE(3393), + [sym_binary_operator] = STATE(3394), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3393), + [sym_call] = STATE(3394), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(3390), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3394), + [sym_anonymous_function] = STATE(3394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1541), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1545), + [sym_char] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1737), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [430] = { + [sym__expression] = STATE(1959), + [sym_block] = STATE(1959), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1959), + [sym_nil] = STATE(1959), + [sym__atom] = STATE(1959), + [sym_quoted_atom] = STATE(1959), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1959), + [sym_charlist] = STATE(1959), + [sym_sigil] = STATE(1959), + [sym_list] = STATE(1959), + [sym_tuple] = STATE(1959), + [sym_bitstring] = STATE(1959), + [sym_map] = STATE(1959), + [sym_unary_operator] = STATE(1959), + [sym__capture_expression] = STATE(1808), + [sym_binary_operator] = STATE(1959), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1959), + [sym_call] = STATE(1959), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1959), + [sym_anonymous_function] = STATE(1959), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1569), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1723), + [sym_integer] = ACTIONS(1575), + [sym_float] = ACTIONS(1723), + [sym_char] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [431] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1739), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [432] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1741), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [433] = { + [sym__expression] = STATE(1671), + [sym_block] = STATE(1671), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1671), + [sym_nil] = STATE(1671), + [sym__atom] = STATE(1671), + [sym_quoted_atom] = STATE(1671), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1671), + [sym_charlist] = STATE(1671), + [sym_sigil] = STATE(1671), + [sym_list] = STATE(1671), + [sym_tuple] = STATE(1671), + [sym_bitstring] = STATE(1671), + [sym_map] = STATE(1671), + [sym_unary_operator] = STATE(1671), + [sym__capture_expression] = STATE(1487), + [sym_binary_operator] = STATE(1671), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1671), + [sym_call] = STATE(1671), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1671), + [sym_anonymous_function] = STATE(1671), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1697), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1743), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1743), + [sym_char] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [434] = { + [sym__expression] = STATE(2986), + [sym_block] = STATE(2986), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2986), + [sym_nil] = STATE(2986), + [sym__atom] = STATE(2986), + [sym_quoted_atom] = STATE(2986), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2986), + [sym_charlist] = STATE(2986), + [sym_sigil] = STATE(2986), + [sym_list] = STATE(2986), + [sym_tuple] = STATE(2986), + [sym_bitstring] = STATE(2986), + [sym_map] = STATE(2986), + [sym_unary_operator] = STATE(2986), + [sym__capture_expression] = STATE(2983), + [sym_binary_operator] = STATE(2986), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2986), + [sym_call] = STATE(2986), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2986), + [sym_anonymous_function] = STATE(2986), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1711), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1713), + [sym_integer] = ACTIONS(1745), + [sym_float] = ACTIONS(1713), + [sym_char] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [435] = { + [sym__expression] = STATE(1671), + [sym_block] = STATE(1671), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1671), + [sym_nil] = STATE(1671), + [sym__atom] = STATE(1671), + [sym_quoted_atom] = STATE(1671), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1671), + [sym_charlist] = STATE(1671), + [sym_sigil] = STATE(1671), + [sym_list] = STATE(1671), + [sym_tuple] = STATE(1671), + [sym_bitstring] = STATE(1671), + [sym_map] = STATE(1671), + [sym_unary_operator] = STATE(1671), + [sym__capture_expression] = STATE(1476), + [sym_binary_operator] = STATE(1671), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1671), + [sym_call] = STATE(1671), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1671), + [sym_anonymous_function] = STATE(1671), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1697), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1743), + [sym_integer] = ACTIONS(1747), + [sym_float] = ACTIONS(1743), + [sym_char] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [436] = { + [sym__expression] = STATE(2869), + [sym_block] = STATE(2869), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2869), + [sym_nil] = STATE(2869), + [sym__atom] = STATE(2869), + [sym_quoted_atom] = STATE(2869), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2869), + [sym_charlist] = STATE(2869), + [sym_sigil] = STATE(2869), + [sym_list] = STATE(2869), + [sym_tuple] = STATE(2869), + [sym_bitstring] = STATE(2869), + [sym_map] = STATE(2869), + [sym_unary_operator] = STATE(2869), + [sym__capture_expression] = STATE(1476), + [sym_binary_operator] = STATE(2869), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2869), + [sym_call] = STATE(2869), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2869), + [sym_anonymous_function] = STATE(2869), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1697), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1699), + [sym_integer] = ACTIONS(1747), + [sym_float] = ACTIONS(1699), + [sym_char] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [437] = { + [sym__expression] = STATE(3286), + [sym_block] = STATE(3286), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3286), + [sym_nil] = STATE(3286), + [sym__atom] = STATE(3286), + [sym_quoted_atom] = STATE(3286), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3286), + [sym_charlist] = STATE(3286), + [sym_sigil] = STATE(3286), + [sym_list] = STATE(3286), + [sym_tuple] = STATE(3286), + [sym_bitstring] = STATE(3286), + [sym_map] = STATE(3286), + [sym_unary_operator] = STATE(3286), + [sym__capture_expression] = STATE(3288), + [sym_binary_operator] = STATE(3286), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3286), + [sym_call] = STATE(3286), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3286), + [sym_anonymous_function] = STATE(3286), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1591), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1593), + [sym_integer] = ACTIONS(1749), + [sym_float] = ACTIONS(1593), + [sym_char] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1593), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [438] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1751), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [439] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1753), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [440] = { + [sym__expression] = STATE(1861), + [sym_block] = STATE(1861), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1861), + [sym_nil] = STATE(1861), + [sym__atom] = STATE(1861), + [sym_quoted_atom] = STATE(1861), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1861), + [sym_charlist] = STATE(1861), + [sym_sigil] = STATE(1861), + [sym_list] = STATE(1861), + [sym_tuple] = STATE(1861), + [sym_bitstring] = STATE(1861), + [sym_map] = STATE(1861), + [sym_unary_operator] = STATE(1861), + [sym__capture_expression] = STATE(1689), + [sym_binary_operator] = STATE(1861), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1861), + [sym_call] = STATE(1861), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1861), + [sym_anonymous_function] = STATE(1861), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1607), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1609), + [sym_integer] = ACTIONS(1645), + [sym_float] = ACTIONS(1609), + [sym_char] = ACTIONS(1609), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [441] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1755), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [442] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [anon_sym_RPAREN] = ACTIONS(1757), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [443] = { + [sym__expression] = STATE(2621), + [sym_block] = STATE(2621), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2621), + [sym_nil] = STATE(2621), + [sym__atom] = STATE(2621), + [sym_quoted_atom] = STATE(2621), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2621), + [sym_charlist] = STATE(2621), + [sym_sigil] = STATE(2621), + [sym_list] = STATE(2621), + [sym_tuple] = STATE(2621), + [sym_bitstring] = STATE(2621), + [sym_map] = STATE(2621), + [sym_unary_operator] = STATE(2621), + [sym_binary_operator] = STATE(2621), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2621), + [sym_call] = STATE(2621), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2621), + [sym_anonymous_function] = STATE(2621), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1759), + [sym_integer] = ACTIONS(1759), + [sym_float] = ACTIONS(1759), + [sym_char] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [444] = { + [sym__expression] = STATE(2529), + [sym_block] = STATE(2529), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2529), + [sym_nil] = STATE(2529), + [sym__atom] = STATE(2529), + [sym_quoted_atom] = STATE(2529), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2529), + [sym_charlist] = STATE(2529), + [sym_sigil] = STATE(2529), + [sym_list] = STATE(2529), + [sym_tuple] = STATE(2529), + [sym_bitstring] = STATE(2529), + [sym_map] = STATE(2529), + [sym_unary_operator] = STATE(2529), + [sym_binary_operator] = STATE(2529), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2529), + [sym_call] = STATE(2529), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2529), + [sym_anonymous_function] = STATE(2529), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1761), + [sym_integer] = ACTIONS(1761), + [sym_float] = ACTIONS(1761), + [sym_char] = ACTIONS(1761), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [445] = { + [sym__expression] = STATE(2313), + [sym_block] = STATE(2313), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2313), + [sym_nil] = STATE(2313), + [sym__atom] = STATE(2313), + [sym_quoted_atom] = STATE(2313), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2313), + [sym_charlist] = STATE(2313), + [sym_sigil] = STATE(2313), + [sym_list] = STATE(2313), + [sym_tuple] = STATE(2313), + [sym_bitstring] = STATE(2313), + [sym_map] = STATE(2313), + [sym_unary_operator] = STATE(2313), + [sym_binary_operator] = STATE(2313), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2313), + [sym_call] = STATE(2313), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2313), + [sym_anonymous_function] = STATE(2313), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1763), + [sym_integer] = ACTIONS(1763), + [sym_float] = ACTIONS(1763), + [sym_char] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [446] = { + [sym__expression] = STATE(2316), + [sym_block] = STATE(2316), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2316), + [sym_nil] = STATE(2316), + [sym__atom] = STATE(2316), + [sym_quoted_atom] = STATE(2316), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2316), + [sym_charlist] = STATE(2316), + [sym_sigil] = STATE(2316), + [sym_list] = STATE(2316), + [sym_tuple] = STATE(2316), + [sym_bitstring] = STATE(2316), + [sym_map] = STATE(2316), + [sym_unary_operator] = STATE(2316), + [sym_binary_operator] = STATE(2316), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2316), + [sym_call] = STATE(2316), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2316), + [sym_anonymous_function] = STATE(2316), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1765), + [sym_integer] = ACTIONS(1765), + [sym_float] = ACTIONS(1765), + [sym_char] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [447] = { + [sym__expression] = STATE(2317), + [sym_block] = STATE(2317), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2317), + [sym_nil] = STATE(2317), + [sym__atom] = STATE(2317), + [sym_quoted_atom] = STATE(2317), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2317), + [sym_charlist] = STATE(2317), + [sym_sigil] = STATE(2317), + [sym_list] = STATE(2317), + [sym_tuple] = STATE(2317), + [sym_bitstring] = STATE(2317), + [sym_map] = STATE(2317), + [sym_unary_operator] = STATE(2317), + [sym_binary_operator] = STATE(2317), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2317), + [sym_call] = STATE(2317), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2317), + [sym_anonymous_function] = STATE(2317), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1767), + [sym_integer] = ACTIONS(1767), + [sym_float] = ACTIONS(1767), + [sym_char] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [448] = { + [sym__expression] = STATE(2318), + [sym_block] = STATE(2318), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2318), + [sym_nil] = STATE(2318), + [sym__atom] = STATE(2318), + [sym_quoted_atom] = STATE(2318), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2318), + [sym_charlist] = STATE(2318), + [sym_sigil] = STATE(2318), + [sym_list] = STATE(2318), + [sym_tuple] = STATE(2318), + [sym_bitstring] = STATE(2318), + [sym_map] = STATE(2318), + [sym_unary_operator] = STATE(2318), + [sym_binary_operator] = STATE(2318), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2318), + [sym_call] = STATE(2318), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2318), + [sym_anonymous_function] = STATE(2318), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1769), + [sym_integer] = ACTIONS(1769), + [sym_float] = ACTIONS(1769), + [sym_char] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [449] = { + [sym__expression] = STATE(2321), + [sym_block] = STATE(2321), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2321), + [sym_nil] = STATE(2321), + [sym__atom] = STATE(2321), + [sym_quoted_atom] = STATE(2321), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2321), + [sym_charlist] = STATE(2321), + [sym_sigil] = STATE(2321), + [sym_list] = STATE(2321), + [sym_tuple] = STATE(2321), + [sym_bitstring] = STATE(2321), + [sym_map] = STATE(2321), + [sym_unary_operator] = STATE(2321), + [sym_binary_operator] = STATE(2321), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2321), + [sym_call] = STATE(2321), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2321), + [sym_anonymous_function] = STATE(2321), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1771), + [sym_integer] = ACTIONS(1771), + [sym_float] = ACTIONS(1771), + [sym_char] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [450] = { + [sym__expression] = STATE(2322), + [sym_block] = STATE(2322), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2322), + [sym_nil] = STATE(2322), + [sym__atom] = STATE(2322), + [sym_quoted_atom] = STATE(2322), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2322), + [sym_charlist] = STATE(2322), + [sym_sigil] = STATE(2322), + [sym_list] = STATE(2322), + [sym_tuple] = STATE(2322), + [sym_bitstring] = STATE(2322), + [sym_map] = STATE(2322), + [sym_unary_operator] = STATE(2322), + [sym_binary_operator] = STATE(2322), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2322), + [sym_call] = STATE(2322), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2322), + [sym_anonymous_function] = STATE(2322), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1773), + [sym_integer] = ACTIONS(1773), + [sym_float] = ACTIONS(1773), + [sym_char] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [451] = { + [sym__expression] = STATE(2323), + [sym_block] = STATE(2323), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2323), + [sym_nil] = STATE(2323), + [sym__atom] = STATE(2323), + [sym_quoted_atom] = STATE(2323), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2323), + [sym_charlist] = STATE(2323), + [sym_sigil] = STATE(2323), + [sym_list] = STATE(2323), + [sym_tuple] = STATE(2323), + [sym_bitstring] = STATE(2323), + [sym_map] = STATE(2323), + [sym_unary_operator] = STATE(2323), + [sym_binary_operator] = STATE(2323), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2323), + [sym_call] = STATE(2323), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2323), + [sym_anonymous_function] = STATE(2323), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1775), + [sym_integer] = ACTIONS(1775), + [sym_float] = ACTIONS(1775), + [sym_char] = ACTIONS(1775), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [452] = { + [sym__expression] = STATE(2324), + [sym_block] = STATE(2324), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2324), + [sym_nil] = STATE(2324), + [sym__atom] = STATE(2324), + [sym_quoted_atom] = STATE(2324), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2324), + [sym_charlist] = STATE(2324), + [sym_sigil] = STATE(2324), + [sym_list] = STATE(2324), + [sym_tuple] = STATE(2324), + [sym_bitstring] = STATE(2324), + [sym_map] = STATE(2324), + [sym_unary_operator] = STATE(2324), + [sym_binary_operator] = STATE(2324), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2324), + [sym_call] = STATE(2324), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2324), + [sym_anonymous_function] = STATE(2324), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1777), + [sym_integer] = ACTIONS(1777), + [sym_float] = ACTIONS(1777), + [sym_char] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [453] = { + [sym__expression] = STATE(2325), + [sym_block] = STATE(2325), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2325), + [sym_nil] = STATE(2325), + [sym__atom] = STATE(2325), + [sym_quoted_atom] = STATE(2325), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2325), + [sym_charlist] = STATE(2325), + [sym_sigil] = STATE(2325), + [sym_list] = STATE(2325), + [sym_tuple] = STATE(2325), + [sym_bitstring] = STATE(2325), + [sym_map] = STATE(2325), + [sym_unary_operator] = STATE(2325), + [sym_binary_operator] = STATE(2325), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2325), + [sym_call] = STATE(2325), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2325), + [sym_anonymous_function] = STATE(2325), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1779), + [sym_integer] = ACTIONS(1779), + [sym_float] = ACTIONS(1779), + [sym_char] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [454] = { + [sym__expression] = STATE(2326), + [sym_block] = STATE(2326), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2326), + [sym_nil] = STATE(2326), + [sym__atom] = STATE(2326), + [sym_quoted_atom] = STATE(2326), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2326), + [sym_charlist] = STATE(2326), + [sym_sigil] = STATE(2326), + [sym_list] = STATE(2326), + [sym_tuple] = STATE(2326), + [sym_bitstring] = STATE(2326), + [sym_map] = STATE(2326), + [sym_unary_operator] = STATE(2326), + [sym_binary_operator] = STATE(2326), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2326), + [sym_call] = STATE(2326), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2326), + [sym_anonymous_function] = STATE(2326), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1781), + [sym_integer] = ACTIONS(1781), + [sym_float] = ACTIONS(1781), + [sym_char] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [455] = { + [sym__expression] = STATE(2327), + [sym_block] = STATE(2327), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2327), + [sym_nil] = STATE(2327), + [sym__atom] = STATE(2327), + [sym_quoted_atom] = STATE(2327), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2327), + [sym_charlist] = STATE(2327), + [sym_sigil] = STATE(2327), + [sym_list] = STATE(2327), + [sym_tuple] = STATE(2327), + [sym_bitstring] = STATE(2327), + [sym_map] = STATE(2327), + [sym_unary_operator] = STATE(2327), + [sym_binary_operator] = STATE(2327), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2327), + [sym_call] = STATE(2327), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2327), + [sym_anonymous_function] = STATE(2327), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1783), + [sym_integer] = ACTIONS(1783), + [sym_float] = ACTIONS(1783), + [sym_char] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [456] = { + [sym__expression] = STATE(2328), + [sym_block] = STATE(2328), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2328), + [sym_nil] = STATE(2328), + [sym__atom] = STATE(2328), + [sym_quoted_atom] = STATE(2328), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2328), + [sym_charlist] = STATE(2328), + [sym_sigil] = STATE(2328), + [sym_list] = STATE(2328), + [sym_tuple] = STATE(2328), + [sym_bitstring] = STATE(2328), + [sym_map] = STATE(2328), + [sym_unary_operator] = STATE(2328), + [sym_binary_operator] = STATE(2328), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2328), + [sym_call] = STATE(2328), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2328), + [sym_anonymous_function] = STATE(2328), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1785), + [sym_integer] = ACTIONS(1785), + [sym_float] = ACTIONS(1785), + [sym_char] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [457] = { + [sym__expression] = STATE(2329), + [sym_block] = STATE(2329), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2329), + [sym_nil] = STATE(2329), + [sym__atom] = STATE(2329), + [sym_quoted_atom] = STATE(2329), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2329), + [sym_charlist] = STATE(2329), + [sym_sigil] = STATE(2329), + [sym_list] = STATE(2329), + [sym_tuple] = STATE(2329), + [sym_bitstring] = STATE(2329), + [sym_map] = STATE(2329), + [sym_unary_operator] = STATE(2329), + [sym_binary_operator] = STATE(2329), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2329), + [sym_call] = STATE(2329), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2329), + [sym_anonymous_function] = STATE(2329), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1787), + [sym_integer] = ACTIONS(1787), + [sym_float] = ACTIONS(1787), + [sym_char] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [458] = { + [sym__expression] = STATE(2330), + [sym_block] = STATE(2330), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2330), + [sym_nil] = STATE(2330), + [sym__atom] = STATE(2330), + [sym_quoted_atom] = STATE(2330), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2330), + [sym_charlist] = STATE(2330), + [sym_sigil] = STATE(2330), + [sym_list] = STATE(2330), + [sym_tuple] = STATE(2330), + [sym_bitstring] = STATE(2330), + [sym_map] = STATE(2330), + [sym_unary_operator] = STATE(2330), + [sym_binary_operator] = STATE(2330), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2330), + [sym_call] = STATE(2330), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2330), + [sym_anonymous_function] = STATE(2330), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1789), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1789), + [sym_char] = ACTIONS(1789), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [459] = { + [sym__expression] = STATE(2377), + [sym_block] = STATE(2377), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2377), + [sym_nil] = STATE(2377), + [sym__atom] = STATE(2377), + [sym_quoted_atom] = STATE(2377), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2377), + [sym_charlist] = STATE(2377), + [sym_sigil] = STATE(2377), + [sym_list] = STATE(2377), + [sym_tuple] = STATE(2377), + [sym_bitstring] = STATE(2377), + [sym_map] = STATE(2377), + [sym_unary_operator] = STATE(2377), + [sym_binary_operator] = STATE(2377), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2377), + [sym_call] = STATE(2377), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2377), + [sym_anonymous_function] = STATE(2377), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1791), + [sym_integer] = ACTIONS(1791), + [sym_float] = ACTIONS(1791), + [sym_char] = ACTIONS(1791), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [460] = { + [sym__expression] = STATE(2486), + [sym_block] = STATE(2486), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2486), + [sym_nil] = STATE(2486), + [sym__atom] = STATE(2486), + [sym_quoted_atom] = STATE(2486), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2486), + [sym_charlist] = STATE(2486), + [sym_sigil] = STATE(2486), + [sym_list] = STATE(2486), + [sym_tuple] = STATE(2486), + [sym_bitstring] = STATE(2486), + [sym_map] = STATE(2486), + [sym_unary_operator] = STATE(2486), + [sym_binary_operator] = STATE(2486), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2486), + [sym_call] = STATE(2486), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2486), + [sym_anonymous_function] = STATE(2486), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1793), + [sym_integer] = ACTIONS(1793), + [sym_float] = ACTIONS(1793), + [sym_char] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [461] = { + [sym__expression] = STATE(2345), + [sym_block] = STATE(2345), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(2345), + [sym_nil] = STATE(2345), + [sym__atom] = STATE(2345), + [sym_quoted_atom] = STATE(2345), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2345), + [sym_charlist] = STATE(2345), + [sym_sigil] = STATE(2345), + [sym_list] = STATE(2345), + [sym_tuple] = STATE(2345), + [sym_bitstring] = STATE(2345), + [sym_map] = STATE(2345), + [sym_unary_operator] = STATE(2345), + [sym_binary_operator] = STATE(2345), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2345), + [sym_call] = STATE(2345), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2345), + [sym_anonymous_function] = STATE(2345), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1795), + [sym_integer] = ACTIONS(1795), + [sym_float] = ACTIONS(1795), + [sym_char] = ACTIONS(1795), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [462] = { + [sym__expression] = STATE(1753), + [sym_block] = STATE(1753), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1753), + [sym_nil] = STATE(1753), + [sym__atom] = STATE(1753), + [sym_quoted_atom] = STATE(1753), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1753), + [sym_charlist] = STATE(1753), + [sym_sigil] = STATE(1753), + [sym_list] = STATE(1753), + [sym_tuple] = STATE(1753), + [sym_bitstring] = STATE(1753), + [sym_map] = STATE(1753), + [sym_unary_operator] = STATE(1753), + [sym_binary_operator] = STATE(1753), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1753), + [sym_call] = STATE(1753), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1753), + [sym_anonymous_function] = STATE(1753), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1797), + [sym_integer] = ACTIONS(1797), + [sym_float] = ACTIONS(1797), + [sym_char] = ACTIONS(1797), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [463] = { + [sym__expression] = STATE(1478), + [sym_block] = STATE(1478), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1478), + [sym_nil] = STATE(1478), + [sym__atom] = STATE(1478), + [sym_quoted_atom] = STATE(1478), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1478), + [sym_charlist] = STATE(1478), + [sym_sigil] = STATE(1478), + [sym_list] = STATE(1478), + [sym_tuple] = STATE(1478), + [sym_bitstring] = STATE(1478), + [sym_map] = STATE(1478), + [sym_unary_operator] = STATE(1478), + [sym_binary_operator] = STATE(1478), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1478), + [sym_call] = STATE(1478), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1478), + [sym_anonymous_function] = STATE(1478), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1799), + [sym_integer] = ACTIONS(1799), + [sym_float] = ACTIONS(1799), + [sym_char] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [464] = { + [sym__expression] = STATE(1761), + [sym_block] = STATE(1761), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1761), + [sym_nil] = STATE(1761), + [sym__atom] = STATE(1761), + [sym_quoted_atom] = STATE(1761), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1761), + [sym_charlist] = STATE(1761), + [sym_sigil] = STATE(1761), + [sym_list] = STATE(1761), + [sym_tuple] = STATE(1761), + [sym_bitstring] = STATE(1761), + [sym_map] = STATE(1761), + [sym_unary_operator] = STATE(1761), + [sym_binary_operator] = STATE(1761), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1761), + [sym_call] = STATE(1761), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1761), + [sym_anonymous_function] = STATE(1761), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1801), + [sym_integer] = ACTIONS(1801), + [sym_float] = ACTIONS(1801), + [sym_char] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [465] = { + [sym__expression] = STATE(2278), + [sym_block] = STATE(2278), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2278), + [sym_nil] = STATE(2278), + [sym__atom] = STATE(2278), + [sym_quoted_atom] = STATE(2278), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2278), + [sym_charlist] = STATE(2278), + [sym_sigil] = STATE(2278), + [sym_list] = STATE(2278), + [sym_tuple] = STATE(2278), + [sym_bitstring] = STATE(2278), + [sym_map] = STATE(2278), + [sym_unary_operator] = STATE(2278), + [sym_binary_operator] = STATE(2278), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2278), + [sym_call] = STATE(2278), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2278), + [sym_anonymous_function] = STATE(2278), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1375), + [sym_integer] = ACTIONS(1375), + [sym_float] = ACTIONS(1375), + [sym_char] = ACTIONS(1375), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [466] = { + [sym__expression] = STATE(1489), + [sym_block] = STATE(1489), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1489), + [sym_nil] = STATE(1489), + [sym__atom] = STATE(1489), + [sym_quoted_atom] = STATE(1489), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1489), + [sym_charlist] = STATE(1489), + [sym_sigil] = STATE(1489), + [sym_list] = STATE(1489), + [sym_tuple] = STATE(1489), + [sym_bitstring] = STATE(1489), + [sym_map] = STATE(1489), + [sym_unary_operator] = STATE(1489), + [sym_binary_operator] = STATE(1489), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1489), + [sym_call] = STATE(1489), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1489), + [sym_anonymous_function] = STATE(1489), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1803), + [sym_integer] = ACTIONS(1803), + [sym_float] = ACTIONS(1803), + [sym_char] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [467] = { + [sym__expression] = STATE(1554), + [sym_block] = STATE(1554), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1554), + [sym_nil] = STATE(1554), + [sym__atom] = STATE(1554), + [sym_quoted_atom] = STATE(1554), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1554), + [sym_charlist] = STATE(1554), + [sym_sigil] = STATE(1554), + [sym_list] = STATE(1554), + [sym_tuple] = STATE(1554), + [sym_bitstring] = STATE(1554), + [sym_map] = STATE(1554), + [sym_unary_operator] = STATE(1554), + [sym_binary_operator] = STATE(1554), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1554), + [sym_call] = STATE(1554), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1554), + [sym_anonymous_function] = STATE(1554), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1805), + [sym_integer] = ACTIONS(1805), + [sym_float] = ACTIONS(1805), + [sym_char] = ACTIONS(1805), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [468] = { + [sym__expression] = STATE(1695), + [sym_block] = STATE(1695), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1695), + [sym_nil] = STATE(1695), + [sym__atom] = STATE(1695), + [sym_quoted_atom] = STATE(1695), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1695), + [sym_charlist] = STATE(1695), + [sym_sigil] = STATE(1695), + [sym_list] = STATE(1695), + [sym_tuple] = STATE(1695), + [sym_bitstring] = STATE(1695), + [sym_map] = STATE(1695), + [sym_unary_operator] = STATE(1695), + [sym_binary_operator] = STATE(1695), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1695), + [sym_call] = STATE(1695), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1695), + [sym_anonymous_function] = STATE(1695), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1807), + [sym_integer] = ACTIONS(1807), + [sym_float] = ACTIONS(1807), + [sym_char] = ACTIONS(1807), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [469] = { + [sym__expression] = STATE(1708), + [sym_block] = STATE(1708), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1708), + [sym_nil] = STATE(1708), + [sym__atom] = STATE(1708), + [sym_quoted_atom] = STATE(1708), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1708), + [sym_charlist] = STATE(1708), + [sym_sigil] = STATE(1708), + [sym_list] = STATE(1708), + [sym_tuple] = STATE(1708), + [sym_bitstring] = STATE(1708), + [sym_map] = STATE(1708), + [sym_unary_operator] = STATE(1708), + [sym_binary_operator] = STATE(1708), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1708), + [sym_call] = STATE(1708), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1708), + [sym_anonymous_function] = STATE(1708), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1809), + [sym_integer] = ACTIONS(1809), + [sym_float] = ACTIONS(1809), + [sym_char] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [470] = { + [sym__expression] = STATE(1709), + [sym_block] = STATE(1709), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1709), + [sym_nil] = STATE(1709), + [sym__atom] = STATE(1709), + [sym_quoted_atom] = STATE(1709), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1709), + [sym_charlist] = STATE(1709), + [sym_sigil] = STATE(1709), + [sym_list] = STATE(1709), + [sym_tuple] = STATE(1709), + [sym_bitstring] = STATE(1709), + [sym_map] = STATE(1709), + [sym_unary_operator] = STATE(1709), + [sym_binary_operator] = STATE(1709), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1709), + [sym_call] = STATE(1709), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1709), + [sym_anonymous_function] = STATE(1709), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1811), + [sym_integer] = ACTIONS(1811), + [sym_float] = ACTIONS(1811), + [sym_char] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [471] = { + [sym__expression] = STATE(1710), + [sym_block] = STATE(1710), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1710), + [sym_nil] = STATE(1710), + [sym__atom] = STATE(1710), + [sym_quoted_atom] = STATE(1710), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1710), + [sym_charlist] = STATE(1710), + [sym_sigil] = STATE(1710), + [sym_list] = STATE(1710), + [sym_tuple] = STATE(1710), + [sym_bitstring] = STATE(1710), + [sym_map] = STATE(1710), + [sym_unary_operator] = STATE(1710), + [sym_binary_operator] = STATE(1710), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1710), + [sym_call] = STATE(1710), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1710), + [sym_anonymous_function] = STATE(1710), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1813), + [sym_integer] = ACTIONS(1813), + [sym_float] = ACTIONS(1813), + [sym_char] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [472] = { [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__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym__atom] = STATE(1724), + [sym_quoted_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), [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_unary_operator] = STATE(1724), + [sym_binary_operator] = STATE(1724), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = 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__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1815), + [sym_integer] = ACTIONS(1815), + [sym_float] = ACTIONS(1815), + [sym_char] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1815), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(895), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [473] = { + [sym__expression] = STATE(1737), + [sym_block] = STATE(1737), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1737), + [sym_nil] = STATE(1737), + [sym__atom] = STATE(1737), + [sym_quoted_atom] = STATE(1737), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1737), + [sym_charlist] = STATE(1737), + [sym_sigil] = STATE(1737), + [sym_list] = STATE(1737), + [sym_tuple] = STATE(1737), + [sym_bitstring] = STATE(1737), + [sym_map] = STATE(1737), + [sym_unary_operator] = STATE(1737), + [sym_binary_operator] = STATE(1737), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1737), + [sym_call] = STATE(1737), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1737), + [sym_anonymous_function] = STATE(1737), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1817), + [sym_integer] = ACTIONS(1817), + [sym_float] = ACTIONS(1817), + [sym_char] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(807), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(809), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [474] = { + [sym__expression] = STATE(1738), + [sym_block] = STATE(1738), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1738), + [sym_nil] = STATE(1738), + [sym__atom] = STATE(1738), + [sym_quoted_atom] = STATE(1738), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1738), + [sym_charlist] = STATE(1738), + [sym_sigil] = STATE(1738), + [sym_list] = STATE(1738), + [sym_tuple] = STATE(1738), + [sym_bitstring] = STATE(1738), + [sym_map] = STATE(1738), + [sym_unary_operator] = STATE(1738), + [sym_binary_operator] = STATE(1738), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1738), + [sym_call] = STATE(1738), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1738), + [sym_anonymous_function] = STATE(1738), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1819), + [sym_integer] = ACTIONS(1819), + [sym_float] = ACTIONS(1819), + [sym_char] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(613), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(895), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [475] = { + [sym__expression] = STATE(1739), + [sym_block] = STATE(1739), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1739), + [sym_nil] = STATE(1739), + [sym__atom] = STATE(1739), + [sym_quoted_atom] = STATE(1739), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1739), + [sym_charlist] = STATE(1739), + [sym_sigil] = STATE(1739), + [sym_list] = STATE(1739), + [sym_tuple] = STATE(1739), + [sym_bitstring] = STATE(1739), + [sym_map] = STATE(1739), + [sym_unary_operator] = STATE(1739), + [sym_binary_operator] = STATE(1739), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1739), + [sym_call] = STATE(1739), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1739), + [sym_anonymous_function] = STATE(1739), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1821), + [sym_integer] = ACTIONS(1821), + [sym_float] = ACTIONS(1821), + [sym_char] = ACTIONS(1821), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1115), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1581), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [476] = { + [sym__expression] = STATE(1658), + [sym_block] = STATE(1658), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1658), + [sym_nil] = STATE(1658), + [sym__atom] = STATE(1658), + [sym_quoted_atom] = STATE(1658), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1658), + [sym_charlist] = STATE(1658), + [sym_sigil] = STATE(1658), + [sym_list] = STATE(1658), + [sym_tuple] = STATE(1658), + [sym_bitstring] = STATE(1658), + [sym_map] = STATE(1658), + [sym_unary_operator] = STATE(1658), + [sym_binary_operator] = STATE(1658), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1658), + [sym_call] = STATE(1658), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1658), + [sym_anonymous_function] = STATE(1658), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1823), + [sym_integer] = ACTIONS(1823), + [sym_float] = ACTIONS(1823), + [sym_char] = ACTIONS(1823), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(381), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1503), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [477] = { + [sym__expression] = STATE(1758), + [sym_block] = STATE(1758), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1758), + [sym_nil] = STATE(1758), + [sym__atom] = STATE(1758), + [sym_quoted_atom] = STATE(1758), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1758), + [sym_charlist] = STATE(1758), + [sym_sigil] = STATE(1758), + [sym_list] = STATE(1758), + [sym_tuple] = STATE(1758), + [sym_bitstring] = STATE(1758), + [sym_map] = STATE(1758), + [sym_unary_operator] = STATE(1758), + [sym_binary_operator] = STATE(1758), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1758), + [sym_call] = STATE(1758), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1758), + [sym_anonymous_function] = STATE(1758), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1825), + [sym_integer] = ACTIONS(1825), + [sym_float] = ACTIONS(1825), + [sym_char] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(381), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1503), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [478] = { + [sym__expression] = STATE(1720), + [sym_block] = STATE(1720), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1720), + [sym_nil] = STATE(1720), + [sym__atom] = STATE(1720), + [sym_quoted_atom] = STATE(1720), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1720), + [sym_charlist] = STATE(1720), + [sym_sigil] = STATE(1720), + [sym_list] = STATE(1720), + [sym_tuple] = STATE(1720), + [sym_bitstring] = STATE(1720), + [sym_map] = STATE(1720), + [sym_unary_operator] = STATE(1720), + [sym_binary_operator] = STATE(1720), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1720), + [sym_call] = STATE(1720), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1720), + [sym_anonymous_function] = STATE(1720), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1827), + [sym_integer] = ACTIONS(1827), + [sym_float] = ACTIONS(1827), + [sym_char] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [479] = { + [sym__expression] = STATE(2868), + [sym_block] = STATE(2868), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2868), + [sym_nil] = STATE(2868), + [sym__atom] = STATE(2868), + [sym_quoted_atom] = STATE(2868), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2868), + [sym_charlist] = STATE(2868), + [sym_sigil] = STATE(2868), + [sym_list] = STATE(2868), + [sym_tuple] = STATE(2868), + [sym_bitstring] = STATE(2868), + [sym_map] = STATE(2868), + [sym_unary_operator] = STATE(2868), + [sym_binary_operator] = STATE(2868), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2868), + [sym_call] = STATE(2868), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2868), + [sym_anonymous_function] = STATE(2868), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1829), + [sym_integer] = ACTIONS(1829), + [sym_float] = ACTIONS(1829), + [sym_char] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [480] = { + [sym__expression] = STATE(1478), + [sym_block] = STATE(1478), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1478), + [sym_nil] = STATE(1478), + [sym__atom] = STATE(1478), + [sym_quoted_atom] = STATE(1478), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1478), + [sym_charlist] = STATE(1478), + [sym_sigil] = STATE(1478), + [sym_list] = STATE(1478), + [sym_tuple] = STATE(1478), + [sym_bitstring] = STATE(1478), + [sym_map] = STATE(1478), + [sym_unary_operator] = STATE(1478), + [sym_binary_operator] = STATE(1478), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1478), + [sym_call] = STATE(1478), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1478), + [sym_anonymous_function] = STATE(1478), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1799), + [sym_integer] = ACTIONS(1799), + [sym_float] = ACTIONS(1799), + [sym_char] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(381), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1503), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [481] = { + [sym__expression] = STATE(1719), + [sym_block] = STATE(1719), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1719), + [sym_nil] = STATE(1719), + [sym__atom] = STATE(1719), + [sym_quoted_atom] = STATE(1719), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1719), + [sym_charlist] = STATE(1719), + [sym_sigil] = STATE(1719), + [sym_list] = STATE(1719), + [sym_tuple] = STATE(1719), + [sym_bitstring] = STATE(1719), + [sym_map] = STATE(1719), + [sym_unary_operator] = STATE(1719), + [sym_binary_operator] = STATE(1719), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1719), + [sym_call] = STATE(1719), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1719), + [sym_anonymous_function] = STATE(1719), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1831), + [sym_integer] = ACTIONS(1831), + [sym_float] = ACTIONS(1831), + [sym_char] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1615), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), }, - [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), + [482] = { + [sym__expression] = STATE(2982), + [sym_block] = STATE(2982), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2982), + [sym_nil] = STATE(2982), + [sym__atom] = STATE(2982), + [sym_quoted_atom] = STATE(2982), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2982), + [sym_charlist] = STATE(2982), + [sym_sigil] = STATE(2982), + [sym_list] = STATE(2982), + [sym_tuple] = STATE(2982), + [sym_bitstring] = STATE(2982), + [sym_map] = STATE(2982), + [sym_unary_operator] = STATE(2982), + [sym_binary_operator] = STATE(2982), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2982), + [sym_call] = STATE(2982), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2982), + [sym_anonymous_function] = STATE(2982), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1833), + [sym_integer] = ACTIONS(1833), + [sym_float] = ACTIONS(1833), + [sym_char] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1519), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), }, - [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), + [483] = { + [sym__expression] = STATE(1716), + [sym_block] = STATE(1716), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1716), + [sym_nil] = STATE(1716), + [sym__atom] = STATE(1716), + [sym_quoted_atom] = STATE(1716), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1716), + [sym_charlist] = STATE(1716), + [sym_sigil] = STATE(1716), + [sym_list] = STATE(1716), + [sym_tuple] = STATE(1716), + [sym_bitstring] = STATE(1716), + [sym_map] = STATE(1716), + [sym_unary_operator] = STATE(1716), + [sym_binary_operator] = STATE(1716), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1716), + [sym_call] = STATE(1716), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1716), + [sym_anonymous_function] = STATE(1716), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1835), + [sym_integer] = ACTIONS(1835), + [sym_float] = ACTIONS(1835), + [sym_char] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [484] = { + [sym__expression] = STATE(1713), + [sym_block] = STATE(1713), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1713), + [sym_nil] = STATE(1713), + [sym__atom] = STATE(1713), + [sym_quoted_atom] = STATE(1713), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1713), + [sym_charlist] = STATE(1713), + [sym_sigil] = STATE(1713), + [sym_list] = STATE(1713), + [sym_tuple] = STATE(1713), + [sym_bitstring] = STATE(1713), + [sym_map] = STATE(1713), + [sym_unary_operator] = STATE(1713), + [sym_binary_operator] = STATE(1713), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1713), + [sym_call] = STATE(1713), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1713), + [sym_anonymous_function] = STATE(1713), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [485] = { + [sym__expression] = STATE(1760), + [sym_block] = STATE(1760), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1760), + [sym_nil] = STATE(1760), + [sym__atom] = STATE(1760), + [sym_quoted_atom] = STATE(1760), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1760), + [sym_charlist] = STATE(1760), + [sym_sigil] = STATE(1760), + [sym_list] = STATE(1760), + [sym_tuple] = STATE(1760), + [sym_bitstring] = STATE(1760), + [sym_map] = STATE(1760), + [sym_unary_operator] = STATE(1760), + [sym_binary_operator] = STATE(1760), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1760), + [sym_call] = STATE(1760), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1760), + [sym_anonymous_function] = STATE(1760), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1839), + [sym_integer] = ACTIONS(1839), + [sym_float] = ACTIONS(1839), + [sym_char] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [486] = { + [sym__expression] = STATE(2369), + [sym_block] = STATE(2369), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2369), + [sym_nil] = STATE(2369), + [sym__atom] = STATE(2369), + [sym_quoted_atom] = STATE(2369), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2369), + [sym_charlist] = STATE(2369), + [sym_sigil] = STATE(2369), + [sym_list] = STATE(2369), + [sym_tuple] = STATE(2369), + [sym_bitstring] = STATE(2369), + [sym_map] = STATE(2369), + [sym_unary_operator] = STATE(2369), + [sym_binary_operator] = STATE(2369), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2369), + [sym_call] = STATE(2369), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2369), + [sym_anonymous_function] = STATE(2369), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1841), + [sym_integer] = ACTIONS(1841), + [sym_float] = ACTIONS(1841), + [sym_char] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [487] = { + [sym__expression] = STATE(2808), + [sym_block] = STATE(2808), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2808), + [sym_nil] = STATE(2808), + [sym__atom] = STATE(2808), + [sym_quoted_atom] = STATE(2808), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2808), + [sym_charlist] = STATE(2808), + [sym_sigil] = STATE(2808), + [sym_list] = STATE(2808), + [sym_tuple] = STATE(2808), + [sym_bitstring] = STATE(2808), + [sym_map] = STATE(2808), + [sym_unary_operator] = STATE(2808), + [sym_binary_operator] = STATE(2808), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2808), + [sym_call] = STATE(2808), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2808), + [sym_anonymous_function] = STATE(2808), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [488] = { + [sym__expression] = STATE(1489), + [sym_block] = STATE(1489), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(1489), + [sym_nil] = STATE(1489), + [sym__atom] = STATE(1489), + [sym_quoted_atom] = STATE(1489), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1489), + [sym_charlist] = STATE(1489), + [sym_sigil] = STATE(1489), + [sym_list] = STATE(1489), + [sym_tuple] = STATE(1489), + [sym_bitstring] = STATE(1489), + [sym_map] = STATE(1489), + [sym_unary_operator] = STATE(1489), + [sym_binary_operator] = STATE(1489), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1489), + [sym_call] = STATE(1489), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1489), + [sym_anonymous_function] = STATE(1489), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1803), + [sym_integer] = ACTIONS(1803), + [sym_float] = ACTIONS(1803), + [sym_char] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [489] = { + [sym__expression] = STATE(2370), + [sym_block] = STATE(2370), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2370), + [sym_nil] = STATE(2370), + [sym__atom] = STATE(2370), + [sym_quoted_atom] = STATE(2370), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2370), + [sym_charlist] = STATE(2370), + [sym_sigil] = STATE(2370), + [sym_list] = STATE(2370), + [sym_tuple] = STATE(2370), + [sym_bitstring] = STATE(2370), + [sym_map] = STATE(2370), + [sym_unary_operator] = STATE(2370), + [sym_binary_operator] = STATE(2370), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2370), + [sym_call] = STATE(2370), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2370), + [sym_anonymous_function] = STATE(2370), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1845), + [sym_integer] = ACTIONS(1845), + [sym_float] = ACTIONS(1845), + [sym_char] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [490] = { + [sym__expression] = STATE(2371), + [sym_block] = STATE(2371), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2371), + [sym_nil] = STATE(2371), + [sym__atom] = STATE(2371), + [sym_quoted_atom] = STATE(2371), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2371), + [sym_charlist] = STATE(2371), + [sym_sigil] = STATE(2371), + [sym_list] = STATE(2371), + [sym_tuple] = STATE(2371), + [sym_bitstring] = STATE(2371), + [sym_map] = STATE(2371), + [sym_unary_operator] = STATE(2371), + [sym_binary_operator] = STATE(2371), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2371), + [sym_call] = STATE(2371), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2371), + [sym_anonymous_function] = STATE(2371), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1847), + [sym_integer] = ACTIONS(1847), + [sym_float] = ACTIONS(1847), + [sym_char] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [491] = { + [sym__expression] = STATE(2372), + [sym_block] = STATE(2372), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2372), + [sym_nil] = STATE(2372), + [sym__atom] = STATE(2372), + [sym_quoted_atom] = STATE(2372), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2372), + [sym_charlist] = STATE(2372), + [sym_sigil] = STATE(2372), + [sym_list] = STATE(2372), + [sym_tuple] = STATE(2372), + [sym_bitstring] = STATE(2372), + [sym_map] = STATE(2372), + [sym_unary_operator] = STATE(2372), + [sym_binary_operator] = STATE(2372), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2372), + [sym_call] = STATE(2372), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2372), + [sym_anonymous_function] = STATE(2372), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1849), + [sym_integer] = ACTIONS(1849), + [sym_float] = ACTIONS(1849), + [sym_char] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [492] = { + [sym__expression] = STATE(2373), + [sym_block] = STATE(2373), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2373), + [sym_nil] = STATE(2373), + [sym__atom] = STATE(2373), + [sym_quoted_atom] = STATE(2373), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2373), + [sym_charlist] = STATE(2373), + [sym_sigil] = STATE(2373), + [sym_list] = STATE(2373), + [sym_tuple] = STATE(2373), + [sym_bitstring] = STATE(2373), + [sym_map] = STATE(2373), + [sym_unary_operator] = STATE(2373), + [sym_binary_operator] = STATE(2373), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2373), + [sym_call] = STATE(2373), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2373), + [sym_anonymous_function] = STATE(2373), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1851), + [sym_integer] = ACTIONS(1851), + [sym_float] = ACTIONS(1851), + [sym_char] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [493] = { + [sym__expression] = STATE(2390), + [sym_block] = STATE(2390), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2390), + [sym_nil] = STATE(2390), + [sym__atom] = STATE(2390), + [sym_quoted_atom] = STATE(2390), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2390), + [sym_charlist] = STATE(2390), + [sym_sigil] = STATE(2390), + [sym_list] = STATE(2390), + [sym_tuple] = STATE(2390), + [sym_bitstring] = STATE(2390), + [sym_map] = STATE(2390), + [sym_unary_operator] = STATE(2390), + [sym_binary_operator] = STATE(2390), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2390), + [sym_call] = STATE(2390), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2390), + [sym_anonymous_function] = STATE(2390), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1853), + [sym_integer] = ACTIONS(1853), + [sym_float] = ACTIONS(1853), + [sym_char] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [494] = { + [sym__expression] = STATE(3065), + [sym_block] = STATE(3065), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3065), + [sym_nil] = STATE(3065), + [sym__atom] = STATE(3065), + [sym_quoted_atom] = STATE(3065), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3065), + [sym_charlist] = STATE(3065), + [sym_sigil] = STATE(3065), + [sym_list] = STATE(3065), + [sym_tuple] = STATE(3065), + [sym_bitstring] = STATE(3065), + [sym_map] = STATE(3065), + [sym_unary_operator] = STATE(3065), + [sym_binary_operator] = STATE(3065), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3065), + [sym_call] = STATE(3065), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3065), + [sym_anonymous_function] = STATE(3065), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1855), + [sym_integer] = ACTIONS(1855), + [sym_float] = ACTIONS(1855), + [sym_char] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [495] = { + [sym__expression] = STATE(2391), + [sym_block] = STATE(2391), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2391), + [sym_nil] = STATE(2391), + [sym__atom] = STATE(2391), + [sym_quoted_atom] = STATE(2391), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2391), + [sym_charlist] = STATE(2391), + [sym_sigil] = STATE(2391), + [sym_list] = STATE(2391), + [sym_tuple] = STATE(2391), + [sym_bitstring] = STATE(2391), + [sym_map] = STATE(2391), + [sym_unary_operator] = STATE(2391), + [sym_binary_operator] = STATE(2391), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2391), + [sym_call] = STATE(2391), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2391), + [sym_anonymous_function] = STATE(2391), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1857), + [sym_integer] = ACTIONS(1857), + [sym_float] = ACTIONS(1857), + [sym_char] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [496] = { + [sym__expression] = STATE(2392), + [sym_block] = STATE(2392), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2392), + [sym_nil] = STATE(2392), + [sym__atom] = STATE(2392), + [sym_quoted_atom] = STATE(2392), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2392), + [sym_charlist] = STATE(2392), + [sym_sigil] = STATE(2392), + [sym_list] = STATE(2392), + [sym_tuple] = STATE(2392), + [sym_bitstring] = STATE(2392), + [sym_map] = STATE(2392), + [sym_unary_operator] = STATE(2392), + [sym_binary_operator] = STATE(2392), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2392), + [sym_call] = STATE(2392), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2392), + [sym_anonymous_function] = STATE(2392), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [497] = { + [sym__expression] = STATE(2393), + [sym_block] = STATE(2393), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2393), + [sym_nil] = STATE(2393), + [sym__atom] = STATE(2393), + [sym_quoted_atom] = STATE(2393), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2393), + [sym_charlist] = STATE(2393), + [sym_sigil] = STATE(2393), + [sym_list] = STATE(2393), + [sym_tuple] = STATE(2393), + [sym_bitstring] = STATE(2393), + [sym_map] = STATE(2393), + [sym_unary_operator] = STATE(2393), + [sym_binary_operator] = STATE(2393), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2393), + [sym_call] = STATE(2393), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2393), + [sym_anonymous_function] = STATE(2393), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1861), + [sym_integer] = ACTIONS(1861), + [sym_float] = ACTIONS(1861), + [sym_char] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [498] = { + [sym__expression] = STATE(2394), + [sym_block] = STATE(2394), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2394), + [sym_nil] = STATE(2394), + [sym__atom] = STATE(2394), + [sym_quoted_atom] = STATE(2394), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2394), + [sym_charlist] = STATE(2394), + [sym_sigil] = STATE(2394), + [sym_list] = STATE(2394), + [sym_tuple] = STATE(2394), + [sym_bitstring] = STATE(2394), + [sym_map] = STATE(2394), + [sym_unary_operator] = STATE(2394), + [sym_binary_operator] = STATE(2394), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2394), + [sym_call] = STATE(2394), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2394), + [sym_anonymous_function] = STATE(2394), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [499] = { + [sym__expression] = STATE(2395), + [sym_block] = STATE(2395), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2395), + [sym_nil] = STATE(2395), + [sym__atom] = STATE(2395), + [sym_quoted_atom] = STATE(2395), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2395), + [sym_charlist] = STATE(2395), + [sym_sigil] = STATE(2395), + [sym_list] = STATE(2395), + [sym_tuple] = STATE(2395), + [sym_bitstring] = STATE(2395), + [sym_map] = STATE(2395), + [sym_unary_operator] = STATE(2395), + [sym_binary_operator] = STATE(2395), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2395), + [sym_call] = STATE(2395), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2395), + [sym_anonymous_function] = STATE(2395), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1865), + [sym_integer] = ACTIONS(1865), + [sym_float] = ACTIONS(1865), + [sym_char] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [500] = { + [sym__expression] = STATE(2398), + [sym_block] = STATE(2398), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2398), + [sym_nil] = STATE(2398), + [sym__atom] = STATE(2398), + [sym_quoted_atom] = STATE(2398), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2398), + [sym_charlist] = STATE(2398), + [sym_sigil] = STATE(2398), + [sym_list] = STATE(2398), + [sym_tuple] = STATE(2398), + [sym_bitstring] = STATE(2398), + [sym_map] = STATE(2398), + [sym_unary_operator] = STATE(2398), + [sym_binary_operator] = STATE(2398), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2398), + [sym_call] = STATE(2398), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2398), + [sym_anonymous_function] = STATE(2398), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [501] = { + [sym__expression] = STATE(2399), + [sym_block] = STATE(2399), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2399), + [sym_nil] = STATE(2399), + [sym__atom] = STATE(2399), + [sym_quoted_atom] = STATE(2399), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2399), + [sym_charlist] = STATE(2399), + [sym_sigil] = STATE(2399), + [sym_list] = STATE(2399), + [sym_tuple] = STATE(2399), + [sym_bitstring] = STATE(2399), + [sym_map] = STATE(2399), + [sym_unary_operator] = STATE(2399), + [sym_binary_operator] = STATE(2399), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2399), + [sym_call] = STATE(2399), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2399), + [sym_anonymous_function] = STATE(2399), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1869), + [sym_integer] = ACTIONS(1869), + [sym_float] = ACTIONS(1869), + [sym_char] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [502] = { + [sym__expression] = STATE(2276), + [sym_block] = STATE(2276), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(2276), + [sym_nil] = STATE(2276), + [sym__atom] = STATE(2276), + [sym_quoted_atom] = STATE(2276), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2276), + [sym_charlist] = STATE(2276), + [sym_sigil] = STATE(2276), + [sym_list] = STATE(2276), + [sym_tuple] = STATE(2276), + [sym_bitstring] = STATE(2276), + [sym_map] = STATE(2276), + [sym_unary_operator] = STATE(2276), + [sym_binary_operator] = STATE(2276), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2276), + [sym_call] = STATE(2276), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2276), + [sym_anonymous_function] = STATE(2276), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [503] = { + [sym__expression] = STATE(2400), + [sym_block] = STATE(2400), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2400), + [sym_nil] = STATE(2400), + [sym__atom] = STATE(2400), + [sym_quoted_atom] = STATE(2400), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2400), + [sym_charlist] = STATE(2400), + [sym_sigil] = STATE(2400), + [sym_list] = STATE(2400), + [sym_tuple] = STATE(2400), + [sym_bitstring] = STATE(2400), + [sym_map] = STATE(2400), + [sym_unary_operator] = STATE(2400), + [sym_binary_operator] = STATE(2400), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2400), + [sym_call] = STATE(2400), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2400), + [sym_anonymous_function] = STATE(2400), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1873), + [sym_integer] = ACTIONS(1873), + [sym_float] = ACTIONS(1873), + [sym_char] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [504] = { + [sym__expression] = STATE(2403), + [sym_block] = STATE(2403), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2403), + [sym_nil] = STATE(2403), + [sym__atom] = STATE(2403), + [sym_quoted_atom] = STATE(2403), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2403), + [sym_charlist] = STATE(2403), + [sym_sigil] = STATE(2403), + [sym_list] = STATE(2403), + [sym_tuple] = STATE(2403), + [sym_bitstring] = STATE(2403), + [sym_map] = STATE(2403), + [sym_unary_operator] = STATE(2403), + [sym_binary_operator] = STATE(2403), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2403), + [sym_call] = STATE(2403), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2403), + [sym_anonymous_function] = STATE(2403), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1875), + [sym_integer] = ACTIONS(1875), + [sym_float] = ACTIONS(1875), + [sym_char] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [505] = { + [sym__expression] = STATE(2404), + [sym_block] = STATE(2404), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2404), + [sym_nil] = STATE(2404), + [sym__atom] = STATE(2404), + [sym_quoted_atom] = STATE(2404), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2404), + [sym_charlist] = STATE(2404), + [sym_sigil] = STATE(2404), + [sym_list] = STATE(2404), + [sym_tuple] = STATE(2404), + [sym_bitstring] = STATE(2404), + [sym_map] = STATE(2404), + [sym_unary_operator] = STATE(2404), + [sym_binary_operator] = STATE(2404), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2404), + [sym_call] = STATE(2404), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2404), + [sym_anonymous_function] = STATE(2404), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [506] = { + [sym__expression] = STATE(2462), + [sym_block] = STATE(2462), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2462), + [sym_nil] = STATE(2462), + [sym__atom] = STATE(2462), + [sym_quoted_atom] = STATE(2462), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2462), + [sym_charlist] = STATE(2462), + [sym_sigil] = STATE(2462), + [sym_list] = STATE(2462), + [sym_tuple] = STATE(2462), + [sym_bitstring] = STATE(2462), + [sym_map] = STATE(2462), + [sym_unary_operator] = STATE(2462), + [sym_binary_operator] = STATE(2462), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2462), + [sym_call] = STATE(2462), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2462), + [sym_anonymous_function] = STATE(2462), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1879), + [sym_integer] = ACTIONS(1879), + [sym_float] = ACTIONS(1879), + [sym_char] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [507] = { + [sym__expression] = STATE(2863), + [sym_block] = STATE(2863), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2863), + [sym_nil] = STATE(2863), + [sym__atom] = STATE(2863), + [sym_quoted_atom] = STATE(2863), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2863), + [sym_charlist] = STATE(2863), + [sym_sigil] = STATE(2863), + [sym_list] = STATE(2863), + [sym_tuple] = STATE(2863), + [sym_bitstring] = STATE(2863), + [sym_map] = STATE(2863), + [sym_unary_operator] = STATE(2863), + [sym_binary_operator] = STATE(2863), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2863), + [sym_call] = STATE(2863), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2863), + [sym_anonymous_function] = STATE(2863), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1881), + [sym_integer] = ACTIONS(1881), + [sym_float] = ACTIONS(1881), + [sym_char] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [508] = { + [sym__expression] = STATE(2862), + [sym_block] = STATE(2862), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2862), + [sym_nil] = STATE(2862), + [sym__atom] = STATE(2862), + [sym_quoted_atom] = STATE(2862), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2862), + [sym_charlist] = STATE(2862), + [sym_sigil] = STATE(2862), + [sym_list] = STATE(2862), + [sym_tuple] = STATE(2862), + [sym_bitstring] = STATE(2862), + [sym_map] = STATE(2862), + [sym_unary_operator] = STATE(2862), + [sym_binary_operator] = STATE(2862), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2862), + [sym_call] = STATE(2862), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2862), + [sym_anonymous_function] = STATE(2862), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1883), + [sym_integer] = ACTIONS(1883), + [sym_float] = ACTIONS(1883), + [sym_char] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [509] = { + [sym__expression] = STATE(2463), + [sym_block] = STATE(2463), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2463), + [sym_nil] = STATE(2463), + [sym__atom] = STATE(2463), + [sym_quoted_atom] = STATE(2463), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2463), + [sym_charlist] = STATE(2463), + [sym_sigil] = STATE(2463), + [sym_list] = STATE(2463), + [sym_tuple] = STATE(2463), + [sym_bitstring] = STATE(2463), + [sym_map] = STATE(2463), + [sym_unary_operator] = STATE(2463), + [sym_binary_operator] = STATE(2463), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2463), + [sym_call] = STATE(2463), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2463), + [sym_anonymous_function] = STATE(2463), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1885), + [sym_integer] = ACTIONS(1885), + [sym_float] = ACTIONS(1885), + [sym_char] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [510] = { + [sym__expression] = STATE(2860), + [sym_block] = STATE(2860), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2860), + [sym_nil] = STATE(2860), + [sym__atom] = STATE(2860), + [sym_quoted_atom] = STATE(2860), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2860), + [sym_charlist] = STATE(2860), + [sym_sigil] = STATE(2860), + [sym_list] = STATE(2860), + [sym_tuple] = STATE(2860), + [sym_bitstring] = STATE(2860), + [sym_map] = STATE(2860), + [sym_unary_operator] = STATE(2860), + [sym_binary_operator] = STATE(2860), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2860), + [sym_call] = STATE(2860), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2860), + [sym_anonymous_function] = STATE(2860), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1887), + [sym_integer] = ACTIONS(1887), + [sym_float] = ACTIONS(1887), + [sym_char] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [511] = { + [sym__expression] = STATE(2859), + [sym_block] = STATE(2859), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2859), + [sym_nil] = STATE(2859), + [sym__atom] = STATE(2859), + [sym_quoted_atom] = STATE(2859), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2859), + [sym_charlist] = STATE(2859), + [sym_sigil] = STATE(2859), + [sym_list] = STATE(2859), + [sym_tuple] = STATE(2859), + [sym_bitstring] = STATE(2859), + [sym_map] = STATE(2859), + [sym_unary_operator] = STATE(2859), + [sym_binary_operator] = STATE(2859), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2859), + [sym_call] = STATE(2859), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2859), + [sym_anonymous_function] = STATE(2859), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1889), + [sym_integer] = ACTIONS(1889), + [sym_float] = ACTIONS(1889), + [sym_char] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [512] = { + [sym__expression] = STATE(2858), + [sym_block] = STATE(2858), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2858), + [sym_nil] = STATE(2858), + [sym__atom] = STATE(2858), + [sym_quoted_atom] = STATE(2858), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2858), + [sym_charlist] = STATE(2858), + [sym_sigil] = STATE(2858), + [sym_list] = STATE(2858), + [sym_tuple] = STATE(2858), + [sym_bitstring] = STATE(2858), + [sym_map] = STATE(2858), + [sym_unary_operator] = STATE(2858), + [sym_binary_operator] = STATE(2858), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2858), + [sym_call] = STATE(2858), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2858), + [sym_anonymous_function] = STATE(2858), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1891), + [sym_integer] = ACTIONS(1891), + [sym_float] = ACTIONS(1891), + [sym_char] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [513] = { + [sym__expression] = STATE(2515), + [sym_block] = STATE(2515), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2515), + [sym_nil] = STATE(2515), + [sym__atom] = STATE(2515), + [sym_quoted_atom] = STATE(2515), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2515), + [sym_charlist] = STATE(2515), + [sym_sigil] = STATE(2515), + [sym_list] = STATE(2515), + [sym_tuple] = STATE(2515), + [sym_bitstring] = STATE(2515), + [sym_map] = STATE(2515), + [sym_unary_operator] = STATE(2515), + [sym_binary_operator] = STATE(2515), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2515), + [sym_call] = STATE(2515), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), [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__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2515), + [sym_anonymous_function] = STATE(2515), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1343), + [sym_integer] = ACTIONS(1343), + [sym_float] = ACTIONS(1343), + [sym_char] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1343), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1115), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1489), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), }, - [1151] = { + [514] = { + [sym__expression] = STATE(2852), + [sym_block] = STATE(2852), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2852), + [sym_nil] = STATE(2852), + [sym__atom] = STATE(2852), + [sym_quoted_atom] = STATE(2852), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2852), + [sym_charlist] = STATE(2852), + [sym_sigil] = STATE(2852), + [sym_list] = STATE(2852), + [sym_tuple] = STATE(2852), + [sym_bitstring] = STATE(2852), + [sym_map] = STATE(2852), + [sym_unary_operator] = STATE(2852), + [sym_binary_operator] = STATE(2852), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2852), + [sym_call] = STATE(2852), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2852), + [sym_anonymous_function] = STATE(2852), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1893), + [sym_integer] = ACTIONS(1893), + [sym_float] = ACTIONS(1893), + [sym_char] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [515] = { + [sym__expression] = STATE(2851), + [sym_block] = STATE(2851), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2851), + [sym_nil] = STATE(2851), + [sym__atom] = STATE(2851), + [sym_quoted_atom] = STATE(2851), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2851), + [sym_charlist] = STATE(2851), + [sym_sigil] = STATE(2851), + [sym_list] = STATE(2851), + [sym_tuple] = STATE(2851), + [sym_bitstring] = STATE(2851), + [sym_map] = STATE(2851), + [sym_unary_operator] = STATE(2851), + [sym_binary_operator] = STATE(2851), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2851), + [sym_call] = STATE(2851), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2851), + [sym_anonymous_function] = STATE(2851), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1895), + [sym_integer] = ACTIONS(1895), + [sym_float] = ACTIONS(1895), + [sym_char] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [516] = { + [sym__expression] = STATE(2850), + [sym_block] = STATE(2850), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2850), + [sym_nil] = STATE(2850), + [sym__atom] = STATE(2850), + [sym_quoted_atom] = STATE(2850), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2850), + [sym_charlist] = STATE(2850), + [sym_sigil] = STATE(2850), + [sym_list] = STATE(2850), + [sym_tuple] = STATE(2850), + [sym_bitstring] = STATE(2850), + [sym_map] = STATE(2850), + [sym_unary_operator] = STATE(2850), + [sym_binary_operator] = STATE(2850), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2850), + [sym_call] = STATE(2850), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2850), + [sym_anonymous_function] = STATE(2850), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [517] = { + [sym__expression] = STATE(2849), + [sym_block] = STATE(2849), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2849), + [sym_nil] = STATE(2849), + [sym__atom] = STATE(2849), + [sym_quoted_atom] = STATE(2849), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2849), + [sym_charlist] = STATE(2849), + [sym_sigil] = STATE(2849), + [sym_list] = STATE(2849), + [sym_tuple] = STATE(2849), + [sym_bitstring] = STATE(2849), + [sym_map] = STATE(2849), + [sym_unary_operator] = STATE(2849), + [sym_binary_operator] = STATE(2849), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2849), + [sym_call] = STATE(2849), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2849), + [sym_anonymous_function] = STATE(2849), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [518] = { + [sym__expression] = STATE(2848), + [sym_block] = STATE(2848), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2848), + [sym_nil] = STATE(2848), + [sym__atom] = STATE(2848), + [sym_quoted_atom] = STATE(2848), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2848), + [sym_charlist] = STATE(2848), + [sym_sigil] = STATE(2848), + [sym_list] = STATE(2848), + [sym_tuple] = STATE(2848), + [sym_bitstring] = STATE(2848), + [sym_map] = STATE(2848), + [sym_unary_operator] = STATE(2848), + [sym_binary_operator] = STATE(2848), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2848), + [sym_call] = STATE(2848), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2848), + [sym_anonymous_function] = STATE(2848), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1901), + [sym_integer] = ACTIONS(1901), + [sym_float] = ACTIONS(1901), + [sym_char] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [519] = { + [sym__expression] = STATE(2847), + [sym_block] = STATE(2847), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2847), + [sym_nil] = STATE(2847), + [sym__atom] = STATE(2847), + [sym_quoted_atom] = STATE(2847), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2847), + [sym_charlist] = STATE(2847), + [sym_sigil] = STATE(2847), + [sym_list] = STATE(2847), + [sym_tuple] = STATE(2847), + [sym_bitstring] = STATE(2847), + [sym_map] = STATE(2847), + [sym_unary_operator] = STATE(2847), + [sym_binary_operator] = STATE(2847), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2847), + [sym_call] = STATE(2847), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2847), + [sym_anonymous_function] = STATE(2847), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1903), + [sym_integer] = ACTIONS(1903), + [sym_float] = ACTIONS(1903), + [sym_char] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [520] = { + [sym__expression] = STATE(2846), + [sym_block] = STATE(2846), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2846), + [sym_nil] = STATE(2846), + [sym__atom] = STATE(2846), + [sym_quoted_atom] = STATE(2846), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2846), + [sym_charlist] = STATE(2846), + [sym_sigil] = STATE(2846), + [sym_list] = STATE(2846), + [sym_tuple] = STATE(2846), + [sym_bitstring] = STATE(2846), + [sym_map] = STATE(2846), + [sym_unary_operator] = STATE(2846), + [sym_binary_operator] = STATE(2846), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2846), + [sym_call] = STATE(2846), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2846), + [sym_anonymous_function] = STATE(2846), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1905), + [sym_integer] = ACTIONS(1905), + [sym_float] = ACTIONS(1905), + [sym_char] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [521] = { + [sym__expression] = STATE(2845), + [sym_block] = STATE(2845), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2845), + [sym_nil] = STATE(2845), + [sym__atom] = STATE(2845), + [sym_quoted_atom] = STATE(2845), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2845), + [sym_charlist] = STATE(2845), + [sym_sigil] = STATE(2845), + [sym_list] = STATE(2845), + [sym_tuple] = STATE(2845), + [sym_bitstring] = STATE(2845), + [sym_map] = STATE(2845), + [sym_unary_operator] = STATE(2845), + [sym_binary_operator] = STATE(2845), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2845), + [sym_call] = STATE(2845), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2845), + [sym_anonymous_function] = STATE(2845), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1907), + [sym_integer] = ACTIONS(1907), + [sym_float] = ACTIONS(1907), + [sym_char] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [522] = { + [sym__expression] = STATE(2844), + [sym_block] = STATE(2844), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2844), + [sym_nil] = STATE(2844), + [sym__atom] = STATE(2844), + [sym_quoted_atom] = STATE(2844), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2844), + [sym_charlist] = STATE(2844), + [sym_sigil] = STATE(2844), + [sym_list] = STATE(2844), + [sym_tuple] = STATE(2844), + [sym_bitstring] = STATE(2844), + [sym_map] = STATE(2844), + [sym_unary_operator] = STATE(2844), + [sym_binary_operator] = STATE(2844), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2844), + [sym_call] = STATE(2844), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2844), + [sym_anonymous_function] = STATE(2844), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1909), + [sym_integer] = ACTIONS(1909), + [sym_float] = ACTIONS(1909), + [sym_char] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [523] = { + [sym__expression] = STATE(2843), + [sym_block] = STATE(2843), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2843), + [sym_nil] = STATE(2843), + [sym__atom] = STATE(2843), + [sym_quoted_atom] = STATE(2843), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2843), + [sym_charlist] = STATE(2843), + [sym_sigil] = STATE(2843), + [sym_list] = STATE(2843), + [sym_tuple] = STATE(2843), + [sym_bitstring] = STATE(2843), + [sym_map] = STATE(2843), + [sym_unary_operator] = STATE(2843), + [sym_binary_operator] = STATE(2843), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2843), + [sym_call] = STATE(2843), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2843), + [sym_anonymous_function] = STATE(2843), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1911), + [sym_integer] = ACTIONS(1911), + [sym_float] = ACTIONS(1911), + [sym_char] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [524] = { + [sym__expression] = STATE(2842), + [sym_block] = STATE(2842), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2842), + [sym_nil] = STATE(2842), + [sym__atom] = STATE(2842), + [sym_quoted_atom] = STATE(2842), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2842), + [sym_charlist] = STATE(2842), + [sym_sigil] = STATE(2842), + [sym_list] = STATE(2842), + [sym_tuple] = STATE(2842), + [sym_bitstring] = STATE(2842), + [sym_map] = STATE(2842), + [sym_unary_operator] = STATE(2842), + [sym_binary_operator] = STATE(2842), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2842), + [sym_call] = STATE(2842), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2842), + [sym_anonymous_function] = STATE(2842), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1913), + [sym_integer] = ACTIONS(1913), + [sym_float] = ACTIONS(1913), + [sym_char] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [525] = { + [sym__expression] = STATE(3066), + [sym_block] = STATE(3066), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3066), + [sym_nil] = STATE(3066), + [sym__atom] = STATE(3066), + [sym_quoted_atom] = STATE(3066), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3066), + [sym_charlist] = STATE(3066), + [sym_sigil] = STATE(3066), + [sym_list] = STATE(3066), + [sym_tuple] = STATE(3066), + [sym_bitstring] = STATE(3066), + [sym_map] = STATE(3066), + [sym_unary_operator] = STATE(3066), + [sym_binary_operator] = STATE(3066), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3066), + [sym_call] = STATE(3066), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3066), + [sym_anonymous_function] = STATE(3066), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1915), + [sym_integer] = ACTIONS(1915), + [sym_float] = ACTIONS(1915), + [sym_char] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [526] = { + [sym__expression] = STATE(3166), + [sym_block] = STATE(3166), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3166), + [sym_nil] = STATE(3166), + [sym__atom] = STATE(3166), + [sym_quoted_atom] = STATE(3166), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3166), + [sym_charlist] = STATE(3166), + [sym_sigil] = STATE(3166), + [sym_list] = STATE(3166), + [sym_tuple] = STATE(3166), + [sym_bitstring] = STATE(3166), + [sym_map] = STATE(3166), + [sym_unary_operator] = STATE(3166), + [sym_binary_operator] = STATE(3166), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3166), + [sym_call] = STATE(3166), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3166), + [sym_anonymous_function] = STATE(3166), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1917), + [sym_integer] = ACTIONS(1917), + [sym_float] = ACTIONS(1917), + [sym_char] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [527] = { + [sym__expression] = STATE(1688), + [sym_block] = STATE(1688), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1688), + [sym_nil] = STATE(1688), + [sym__atom] = STATE(1688), + [sym_quoted_atom] = STATE(1688), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1688), + [sym_charlist] = STATE(1688), + [sym_sigil] = STATE(1688), + [sym_list] = STATE(1688), + [sym_tuple] = STATE(1688), + [sym_bitstring] = STATE(1688), + [sym_map] = STATE(1688), + [sym_unary_operator] = STATE(1688), + [sym_binary_operator] = STATE(1688), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1688), + [sym_call] = STATE(1688), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1688), + [sym_anonymous_function] = STATE(1688), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1919), + [sym_integer] = ACTIONS(1919), + [sym_float] = ACTIONS(1919), + [sym_char] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [528] = { [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__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3067), + [sym_nil] = STATE(3067), + [sym__atom] = STATE(3067), + [sym_quoted_atom] = STATE(3067), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), [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_unary_operator] = STATE(3067), + [sym_binary_operator] = STATE(3067), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = 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__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1921), + [sym_integer] = ACTIONS(1921), + [sym_float] = ACTIONS(1921), + [sym_char] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1115), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1489), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), }, - [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), + [529] = { + [sym__expression] = STATE(2421), + [sym_block] = STATE(2421), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2421), + [sym_nil] = STATE(2421), + [sym__atom] = STATE(2421), + [sym_quoted_atom] = STATE(2421), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2421), + [sym_charlist] = STATE(2421), + [sym_sigil] = STATE(2421), + [sym_list] = STATE(2421), + [sym_tuple] = STATE(2421), + [sym_bitstring] = STATE(2421), + [sym_map] = STATE(2421), + [sym_unary_operator] = STATE(2421), + [sym_binary_operator] = STATE(2421), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2421), + [sym_call] = STATE(2421), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2421), + [sym_anonymous_function] = STATE(2421), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1923), + [sym_integer] = ACTIONS(1923), + [sym_float] = ACTIONS(1923), + [sym_char] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1405), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1519), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), }, - [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), + [530] = { + [sym__expression] = STATE(2422), + [sym_block] = STATE(2422), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2422), + [sym_nil] = STATE(2422), + [sym__atom] = STATE(2422), + [sym_quoted_atom] = STATE(2422), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2422), + [sym_charlist] = STATE(2422), + [sym_sigil] = STATE(2422), + [sym_list] = STATE(2422), + [sym_tuple] = STATE(2422), + [sym_bitstring] = STATE(2422), + [sym_map] = STATE(2422), + [sym_unary_operator] = STATE(2422), + [sym_binary_operator] = STATE(2422), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2422), + [sym_call] = STATE(2422), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2422), + [sym_anonymous_function] = STATE(2422), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1925), + [sym_integer] = ACTIONS(1925), + [sym_float] = ACTIONS(1925), + [sym_char] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(1223), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(1225), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), }, - [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] = { + [531] = { [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__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3165), + [sym_nil] = STATE(3165), + [sym__atom] = STATE(3165), + [sym_quoted_atom] = STATE(3165), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), [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_unary_operator] = STATE(3165), + [sym_binary_operator] = STATE(3165), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = 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__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1927), + [sym_integer] = ACTIONS(1927), + [sym_float] = ACTIONS(1927), + [sym_char] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), [sym_comment] = ACTIONS(5), - [sym__atom_start] = ACTIONS(807), - [sym__newline_before_binary_op] = ACTIONS(3), + [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(809), - [sym__not_in] = ACTIONS(61), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), }, - [1190] = { + [532] = { + [sym__expression] = STATE(1682), + [sym_block] = STATE(1682), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(1682), + [sym_nil] = STATE(1682), + [sym__atom] = STATE(1682), + [sym_quoted_atom] = STATE(1682), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1682), + [sym_charlist] = STATE(1682), + [sym_sigil] = STATE(1682), + [sym_list] = STATE(1682), + [sym_tuple] = STATE(1682), + [sym_bitstring] = STATE(1682), + [sym_map] = STATE(1682), + [sym_unary_operator] = STATE(1682), + [sym_binary_operator] = STATE(1682), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1682), + [sym_call] = STATE(1682), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1682), + [sym_anonymous_function] = STATE(1682), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1929), + [sym_integer] = ACTIONS(1929), + [sym_float] = ACTIONS(1929), + [sym_char] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [533] = { + [sym__expression] = STATE(2436), + [sym_block] = STATE(2436), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2436), + [sym_nil] = STATE(2436), + [sym__atom] = STATE(2436), + [sym_quoted_atom] = STATE(2436), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2436), + [sym_charlist] = STATE(2436), + [sym_sigil] = STATE(2436), + [sym_list] = STATE(2436), + [sym_tuple] = STATE(2436), + [sym_bitstring] = STATE(2436), + [sym_map] = STATE(2436), + [sym_unary_operator] = STATE(2436), + [sym_binary_operator] = STATE(2436), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2436), + [sym_call] = STATE(2436), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2436), + [sym_anonymous_function] = STATE(2436), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1931), + [sym_integer] = ACTIONS(1931), + [sym_float] = ACTIONS(1931), + [sym_char] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [534] = { + [sym__expression] = STATE(2437), + [sym_block] = STATE(2437), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2437), + [sym_nil] = STATE(2437), + [sym__atom] = STATE(2437), + [sym_quoted_atom] = STATE(2437), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2437), + [sym_charlist] = STATE(2437), + [sym_sigil] = STATE(2437), + [sym_list] = STATE(2437), + [sym_tuple] = STATE(2437), + [sym_bitstring] = STATE(2437), + [sym_map] = STATE(2437), + [sym_unary_operator] = STATE(2437), + [sym_binary_operator] = STATE(2437), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2437), + [sym_call] = STATE(2437), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2437), + [sym_anonymous_function] = STATE(2437), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1933), + [sym_integer] = ACTIONS(1933), + [sym_float] = ACTIONS(1933), + [sym_char] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [535] = { + [sym__expression] = STATE(2346), + [sym_block] = STATE(2346), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(2346), + [sym_nil] = STATE(2346), + [sym__atom] = STATE(2346), + [sym_quoted_atom] = STATE(2346), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2346), + [sym_charlist] = STATE(2346), + [sym_sigil] = STATE(2346), + [sym_list] = STATE(2346), + [sym_tuple] = STATE(2346), + [sym_bitstring] = STATE(2346), + [sym_map] = STATE(2346), + [sym_unary_operator] = STATE(2346), + [sym_binary_operator] = STATE(2346), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2346), + [sym_call] = STATE(2346), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2346), + [sym_anonymous_function] = STATE(2346), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1935), + [sym_integer] = ACTIONS(1935), + [sym_float] = ACTIONS(1935), + [sym_char] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [536] = { + [sym__expression] = STATE(3380), + [sym_block] = STATE(3380), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3380), + [sym_nil] = STATE(3380), + [sym__atom] = STATE(3380), + [sym_quoted_atom] = STATE(3380), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3380), + [sym_charlist] = STATE(3380), + [sym_sigil] = STATE(3380), + [sym_list] = STATE(3380), + [sym_tuple] = STATE(3380), + [sym_bitstring] = STATE(3380), + [sym_map] = STATE(3380), + [sym_unary_operator] = STATE(3380), + [sym_binary_operator] = STATE(3380), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3380), + [sym_call] = STATE(3380), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3380), + [sym_anonymous_function] = STATE(3380), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1937), + [sym_integer] = ACTIONS(1937), + [sym_float] = ACTIONS(1937), + [sym_char] = ACTIONS(1937), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [537] = { + [sym__expression] = STATE(3108), + [sym_block] = STATE(3108), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3108), + [sym_nil] = STATE(3108), + [sym__atom] = STATE(3108), + [sym_quoted_atom] = STATE(3108), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3108), + [sym_charlist] = STATE(3108), + [sym_sigil] = STATE(3108), + [sym_list] = STATE(3108), + [sym_tuple] = STATE(3108), + [sym_bitstring] = STATE(3108), + [sym_map] = STATE(3108), + [sym_unary_operator] = STATE(3108), + [sym_binary_operator] = STATE(3108), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3108), + [sym_call] = STATE(3108), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3108), + [sym_anonymous_function] = STATE(3108), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1939), + [sym_integer] = ACTIONS(1939), + [sym_float] = ACTIONS(1939), + [sym_char] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [538] = { + [sym__expression] = STATE(1688), + [sym_block] = STATE(1688), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(1688), + [sym_nil] = STATE(1688), + [sym__atom] = STATE(1688), + [sym_quoted_atom] = STATE(1688), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1688), + [sym_charlist] = STATE(1688), + [sym_sigil] = STATE(1688), + [sym_list] = STATE(1688), + [sym_tuple] = STATE(1688), + [sym_bitstring] = STATE(1688), + [sym_map] = STATE(1688), + [sym_unary_operator] = STATE(1688), + [sym_binary_operator] = STATE(1688), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1688), + [sym_call] = STATE(1688), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1688), + [sym_anonymous_function] = STATE(1688), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1919), + [sym_integer] = ACTIONS(1919), + [sym_float] = ACTIONS(1919), + [sym_char] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [539] = { + [sym__expression] = STATE(3162), + [sym_block] = STATE(3162), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3162), + [sym_nil] = STATE(3162), + [sym__atom] = STATE(3162), + [sym_quoted_atom] = STATE(3162), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3162), + [sym_charlist] = STATE(3162), + [sym_sigil] = STATE(3162), + [sym_list] = STATE(3162), + [sym_tuple] = STATE(3162), + [sym_bitstring] = STATE(3162), + [sym_map] = STATE(3162), + [sym_unary_operator] = STATE(3162), + [sym_binary_operator] = STATE(3162), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3162), + [sym_call] = STATE(3162), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3162), + [sym_anonymous_function] = STATE(3162), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1941), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1941), + [sym_char] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [540] = { + [sym__expression] = STATE(3161), + [sym_block] = STATE(3161), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3161), + [sym_nil] = STATE(3161), + [sym__atom] = STATE(3161), + [sym_quoted_atom] = STATE(3161), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3161), + [sym_charlist] = STATE(3161), + [sym_sigil] = STATE(3161), + [sym_list] = STATE(3161), + [sym_tuple] = STATE(3161), + [sym_bitstring] = STATE(3161), + [sym_map] = STATE(3161), + [sym_unary_operator] = STATE(3161), + [sym_binary_operator] = STATE(3161), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3161), + [sym_call] = STATE(3161), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3161), + [sym_anonymous_function] = STATE(3161), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1943), + [sym_integer] = ACTIONS(1943), + [sym_float] = ACTIONS(1943), + [sym_char] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [541] = { + [sym__expression] = STATE(2735), + [sym_block] = STATE(2735), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2735), + [sym_nil] = STATE(2735), + [sym__atom] = STATE(2735), + [sym_quoted_atom] = STATE(2735), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2735), + [sym_charlist] = STATE(2735), + [sym_sigil] = STATE(2735), + [sym_list] = STATE(2735), + [sym_tuple] = STATE(2735), + [sym_bitstring] = STATE(2735), + [sym_map] = STATE(2735), + [sym_unary_operator] = STATE(2735), + [sym_binary_operator] = STATE(2735), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2735), + [sym_call] = STATE(2735), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2735), + [sym_anonymous_function] = STATE(2735), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1945), + [sym_integer] = ACTIONS(1945), + [sym_float] = ACTIONS(1945), + [sym_char] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [542] = { + [sym__expression] = STATE(3158), + [sym_block] = STATE(3158), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3158), + [sym_nil] = STATE(3158), + [sym__atom] = STATE(3158), + [sym_quoted_atom] = STATE(3158), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3158), + [sym_charlist] = STATE(3158), + [sym_sigil] = STATE(3158), + [sym_list] = STATE(3158), + [sym_tuple] = STATE(3158), + [sym_bitstring] = STATE(3158), + [sym_map] = STATE(3158), + [sym_unary_operator] = STATE(3158), + [sym_binary_operator] = STATE(3158), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3158), + [sym_call] = STATE(3158), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3158), + [sym_anonymous_function] = STATE(3158), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1947), + [sym_integer] = ACTIONS(1947), + [sym_float] = ACTIONS(1947), + [sym_char] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [543] = { + [sym__expression] = STATE(3102), + [sym_block] = STATE(3102), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3102), + [sym_nil] = STATE(3102), + [sym__atom] = STATE(3102), + [sym_quoted_atom] = STATE(3102), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3102), + [sym_charlist] = STATE(3102), + [sym_sigil] = STATE(3102), + [sym_list] = STATE(3102), + [sym_tuple] = STATE(3102), + [sym_bitstring] = STATE(3102), + [sym_map] = STATE(3102), + [sym_unary_operator] = STATE(3102), + [sym_binary_operator] = STATE(3102), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3102), + [sym_call] = STATE(3102), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3102), + [sym_anonymous_function] = STATE(3102), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1949), + [sym_integer] = ACTIONS(1949), + [sym_float] = ACTIONS(1949), + [sym_char] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [544] = { + [sym__expression] = STATE(1682), + [sym_block] = STATE(1682), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(1682), + [sym_nil] = STATE(1682), + [sym__atom] = STATE(1682), + [sym_quoted_atom] = STATE(1682), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1682), + [sym_charlist] = STATE(1682), + [sym_sigil] = STATE(1682), + [sym_list] = STATE(1682), + [sym_tuple] = STATE(1682), + [sym_bitstring] = STATE(1682), + [sym_map] = STATE(1682), + [sym_unary_operator] = STATE(1682), + [sym_binary_operator] = STATE(1682), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1682), + [sym_call] = STATE(1682), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1682), + [sym_anonymous_function] = STATE(1682), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1929), + [sym_integer] = ACTIONS(1929), + [sym_float] = ACTIONS(1929), + [sym_char] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [545] = { + [sym__expression] = STATE(3153), + [sym_block] = STATE(3153), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3153), + [sym_nil] = STATE(3153), + [sym__atom] = STATE(3153), + [sym_quoted_atom] = STATE(3153), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3153), + [sym_charlist] = STATE(3153), + [sym_sigil] = STATE(3153), + [sym_list] = STATE(3153), + [sym_tuple] = STATE(3153), + [sym_bitstring] = STATE(3153), + [sym_map] = STATE(3153), + [sym_unary_operator] = STATE(3153), + [sym_binary_operator] = STATE(3153), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3153), + [sym_call] = STATE(3153), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3153), + [sym_anonymous_function] = STATE(3153), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1951), + [sym_integer] = ACTIONS(1951), + [sym_float] = ACTIONS(1951), + [sym_char] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [546] = { + [sym__expression] = STATE(3079), + [sym_block] = STATE(3079), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3079), + [sym_nil] = STATE(3079), + [sym__atom] = STATE(3079), + [sym_quoted_atom] = STATE(3079), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3079), + [sym_charlist] = STATE(3079), + [sym_sigil] = STATE(3079), + [sym_list] = STATE(3079), + [sym_tuple] = STATE(3079), + [sym_bitstring] = STATE(3079), + [sym_map] = STATE(3079), + [sym_unary_operator] = STATE(3079), + [sym_binary_operator] = STATE(3079), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3079), + [sym_call] = STATE(3079), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3079), + [sym_anonymous_function] = STATE(3079), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1953), + [sym_integer] = ACTIONS(1953), + [sym_float] = ACTIONS(1953), + [sym_char] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1953), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [547] = { + [sym__expression] = STATE(3081), + [sym_block] = STATE(3081), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3081), + [sym_nil] = STATE(3081), + [sym__atom] = STATE(3081), + [sym_quoted_atom] = STATE(3081), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3081), + [sym_charlist] = STATE(3081), + [sym_sigil] = STATE(3081), + [sym_list] = STATE(3081), + [sym_tuple] = STATE(3081), + [sym_bitstring] = STATE(3081), + [sym_map] = STATE(3081), + [sym_unary_operator] = STATE(3081), + [sym_binary_operator] = STATE(3081), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3081), + [sym_call] = STATE(3081), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3081), + [sym_anonymous_function] = STATE(3081), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1955), + [sym_integer] = ACTIONS(1955), + [sym_float] = ACTIONS(1955), + [sym_char] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [548] = { + [sym__expression] = STATE(3152), + [sym_block] = STATE(3152), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3152), + [sym_nil] = STATE(3152), + [sym__atom] = STATE(3152), + [sym_quoted_atom] = STATE(3152), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3152), + [sym_charlist] = STATE(3152), + [sym_sigil] = STATE(3152), + [sym_list] = STATE(3152), + [sym_tuple] = STATE(3152), + [sym_bitstring] = STATE(3152), + [sym_map] = STATE(3152), + [sym_unary_operator] = STATE(3152), + [sym_binary_operator] = STATE(3152), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3152), + [sym_call] = STATE(3152), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3152), + [sym_anonymous_function] = STATE(3152), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1957), + [sym_integer] = ACTIONS(1957), + [sym_float] = ACTIONS(1957), + [sym_char] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [549] = { + [sym__expression] = STATE(3150), + [sym_block] = STATE(3150), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3150), + [sym_nil] = STATE(3150), + [sym__atom] = STATE(3150), + [sym_quoted_atom] = STATE(3150), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3150), + [sym_charlist] = STATE(3150), + [sym_sigil] = STATE(3150), + [sym_list] = STATE(3150), + [sym_tuple] = STATE(3150), + [sym_bitstring] = STATE(3150), + [sym_map] = STATE(3150), + [sym_unary_operator] = STATE(3150), + [sym_binary_operator] = STATE(3150), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3150), + [sym_call] = STATE(3150), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3150), + [sym_anonymous_function] = STATE(3150), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1959), + [sym_integer] = ACTIONS(1959), + [sym_float] = ACTIONS(1959), + [sym_char] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [550] = { + [sym__expression] = STATE(3148), + [sym_block] = STATE(3148), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3148), + [sym_nil] = STATE(3148), + [sym__atom] = STATE(3148), + [sym_quoted_atom] = STATE(3148), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3148), + [sym_charlist] = STATE(3148), + [sym_sigil] = STATE(3148), + [sym_list] = STATE(3148), + [sym_tuple] = STATE(3148), + [sym_bitstring] = STATE(3148), + [sym_map] = STATE(3148), + [sym_unary_operator] = STATE(3148), + [sym_binary_operator] = STATE(3148), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3148), + [sym_call] = STATE(3148), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3148), + [sym_anonymous_function] = STATE(3148), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1961), + [sym_integer] = ACTIONS(1961), + [sym_float] = ACTIONS(1961), + [sym_char] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [551] = { + [sym__expression] = STATE(3145), + [sym_block] = STATE(3145), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3145), + [sym_nil] = STATE(3145), + [sym__atom] = STATE(3145), + [sym_quoted_atom] = STATE(3145), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3145), + [sym_charlist] = STATE(3145), + [sym_sigil] = STATE(3145), + [sym_list] = STATE(3145), + [sym_tuple] = STATE(3145), + [sym_bitstring] = STATE(3145), + [sym_map] = STATE(3145), + [sym_unary_operator] = STATE(3145), + [sym_binary_operator] = STATE(3145), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3145), + [sym_call] = STATE(3145), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3145), + [sym_anonymous_function] = STATE(3145), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1963), + [sym_integer] = ACTIONS(1963), + [sym_float] = ACTIONS(1963), + [sym_char] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [552] = { + [sym__expression] = STATE(3142), + [sym_block] = STATE(3142), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3142), + [sym_nil] = STATE(3142), + [sym__atom] = STATE(3142), + [sym_quoted_atom] = STATE(3142), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3142), + [sym_charlist] = STATE(3142), + [sym_sigil] = STATE(3142), + [sym_list] = STATE(3142), + [sym_tuple] = STATE(3142), + [sym_bitstring] = STATE(3142), + [sym_map] = STATE(3142), + [sym_unary_operator] = STATE(3142), + [sym_binary_operator] = STATE(3142), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3142), + [sym_call] = STATE(3142), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3142), + [sym_anonymous_function] = STATE(3142), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1965), + [sym_integer] = ACTIONS(1965), + [sym_float] = ACTIONS(1965), + [sym_char] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [553] = { + [sym__expression] = STATE(2885), + [sym_block] = STATE(2885), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2885), + [sym_nil] = STATE(2885), + [sym__atom] = STATE(2885), + [sym_quoted_atom] = STATE(2885), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2885), + [sym_charlist] = STATE(2885), + [sym_sigil] = STATE(2885), + [sym_list] = STATE(2885), + [sym_tuple] = STATE(2885), + [sym_bitstring] = STATE(2885), + [sym_map] = STATE(2885), + [sym_unary_operator] = STATE(2885), + [sym_binary_operator] = STATE(2885), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2885), + [sym_call] = STATE(2885), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2885), + [sym_anonymous_function] = STATE(2885), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1201), + [sym_integer] = ACTIONS(1201), + [sym_float] = ACTIONS(1201), + [sym_char] = ACTIONS(1201), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [554] = { + [sym__expression] = STATE(3050), + [sym_block] = STATE(3050), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3050), + [sym_nil] = STATE(3050), + [sym__atom] = STATE(3050), + [sym_quoted_atom] = STATE(3050), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3050), + [sym_charlist] = STATE(3050), + [sym_sigil] = STATE(3050), + [sym_list] = STATE(3050), + [sym_tuple] = STATE(3050), + [sym_bitstring] = STATE(3050), + [sym_map] = STATE(3050), + [sym_unary_operator] = STATE(3050), + [sym_binary_operator] = STATE(3050), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3050), + [sym_call] = STATE(3050), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1967), + [sym_integer] = ACTIONS(1967), + [sym_float] = ACTIONS(1967), + [sym_char] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [555] = { + [sym__expression] = STATE(3049), + [sym_block] = STATE(3049), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3049), + [sym_nil] = STATE(3049), + [sym__atom] = STATE(3049), + [sym_quoted_atom] = STATE(3049), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3049), + [sym_charlist] = STATE(3049), + [sym_sigil] = STATE(3049), + [sym_list] = STATE(3049), + [sym_tuple] = STATE(3049), + [sym_bitstring] = STATE(3049), + [sym_map] = STATE(3049), + [sym_unary_operator] = STATE(3049), + [sym_binary_operator] = STATE(3049), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3049), + [sym_call] = STATE(3049), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3049), + [sym_anonymous_function] = STATE(3049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1969), + [sym_integer] = ACTIONS(1969), + [sym_float] = ACTIONS(1969), + [sym_char] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [556] = { + [sym__expression] = STATE(3121), + [sym_block] = STATE(3121), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3121), + [sym_nil] = STATE(3121), + [sym__atom] = STATE(3121), + [sym_quoted_atom] = STATE(3121), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3121), + [sym_charlist] = STATE(3121), + [sym_sigil] = STATE(3121), + [sym_list] = STATE(3121), + [sym_tuple] = STATE(3121), + [sym_bitstring] = STATE(3121), + [sym_map] = STATE(3121), + [sym_unary_operator] = STATE(3121), + [sym_binary_operator] = STATE(3121), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3121), + [sym_call] = STATE(3121), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3121), + [sym_anonymous_function] = STATE(3121), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1971), + [sym_integer] = ACTIONS(1971), + [sym_float] = ACTIONS(1971), + [sym_char] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [557] = { + [sym__expression] = STATE(3351), + [sym_block] = STATE(3351), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3351), + [sym_nil] = STATE(3351), + [sym__atom] = STATE(3351), + [sym_quoted_atom] = STATE(3351), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3351), + [sym_charlist] = STATE(3351), + [sym_sigil] = STATE(3351), + [sym_list] = STATE(3351), + [sym_tuple] = STATE(3351), + [sym_bitstring] = STATE(3351), + [sym_map] = STATE(3351), + [sym_unary_operator] = STATE(3351), + [sym_binary_operator] = STATE(3351), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3351), + [sym_call] = STATE(3351), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3351), + [sym_anonymous_function] = STATE(3351), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1387), + [sym_integer] = ACTIONS(1387), + [sym_float] = ACTIONS(1387), + [sym_char] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [558] = { + [sym__expression] = STATE(3047), + [sym_block] = STATE(3047), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3047), + [sym_nil] = STATE(3047), + [sym__atom] = STATE(3047), + [sym_quoted_atom] = STATE(3047), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3047), + [sym_charlist] = STATE(3047), + [sym_sigil] = STATE(3047), + [sym_list] = STATE(3047), + [sym_tuple] = STATE(3047), + [sym_bitstring] = STATE(3047), + [sym_map] = STATE(3047), + [sym_unary_operator] = STATE(3047), + [sym_binary_operator] = STATE(3047), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3047), + [sym_call] = STATE(3047), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3047), + [sym_anonymous_function] = STATE(3047), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1973), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1973), + [sym_char] = ACTIONS(1973), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [559] = { + [sym__expression] = STATE(3045), + [sym_block] = STATE(3045), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3045), + [sym_nil] = STATE(3045), + [sym__atom] = STATE(3045), + [sym_quoted_atom] = STATE(3045), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3045), + [sym_charlist] = STATE(3045), + [sym_sigil] = STATE(3045), + [sym_list] = STATE(3045), + [sym_tuple] = STATE(3045), + [sym_bitstring] = STATE(3045), + [sym_map] = STATE(3045), + [sym_unary_operator] = STATE(3045), + [sym_binary_operator] = STATE(3045), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3045), + [sym_call] = STATE(3045), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3045), + [sym_anonymous_function] = STATE(3045), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1975), + [sym_integer] = ACTIONS(1975), + [sym_float] = ACTIONS(1975), + [sym_char] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [560] = { + [sym__expression] = STATE(3118), + [sym_block] = STATE(3118), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3118), + [sym_nil] = STATE(3118), + [sym__atom] = STATE(3118), + [sym_quoted_atom] = STATE(3118), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3118), + [sym_charlist] = STATE(3118), + [sym_sigil] = STATE(3118), + [sym_list] = STATE(3118), + [sym_tuple] = STATE(3118), + [sym_bitstring] = STATE(3118), + [sym_map] = STATE(3118), + [sym_unary_operator] = STATE(3118), + [sym_binary_operator] = STATE(3118), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3118), + [sym_call] = STATE(3118), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3118), + [sym_anonymous_function] = STATE(3118), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1977), + [sym_integer] = ACTIONS(1977), + [sym_float] = ACTIONS(1977), + [sym_char] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [561] = { + [sym__expression] = STATE(3116), + [sym_block] = STATE(3116), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3116), + [sym_nil] = STATE(3116), + [sym__atom] = STATE(3116), + [sym_quoted_atom] = STATE(3116), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3116), + [sym_charlist] = STATE(3116), + [sym_sigil] = STATE(3116), + [sym_list] = STATE(3116), + [sym_tuple] = STATE(3116), + [sym_bitstring] = STATE(3116), + [sym_map] = STATE(3116), + [sym_unary_operator] = STATE(3116), + [sym_binary_operator] = STATE(3116), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3116), + [sym_call] = STATE(3116), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3116), + [sym_anonymous_function] = STATE(3116), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1979), + [sym_integer] = ACTIONS(1979), + [sym_float] = ACTIONS(1979), + [sym_char] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1979), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [562] = { + [sym__expression] = STATE(3109), + [sym_block] = STATE(3109), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3109), + [sym_nil] = STATE(3109), + [sym__atom] = STATE(3109), + [sym_quoted_atom] = STATE(3109), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3109), + [sym_charlist] = STATE(3109), + [sym_sigil] = STATE(3109), + [sym_list] = STATE(3109), + [sym_tuple] = STATE(3109), + [sym_bitstring] = STATE(3109), + [sym_map] = STATE(3109), + [sym_unary_operator] = STATE(3109), + [sym_binary_operator] = STATE(3109), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3109), + [sym_call] = STATE(3109), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3109), + [sym_anonymous_function] = STATE(3109), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1981), + [sym_integer] = ACTIONS(1981), + [sym_float] = ACTIONS(1981), + [sym_char] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [563] = { + [sym__expression] = STATE(3105), + [sym_block] = STATE(3105), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3105), + [sym_nil] = STATE(3105), + [sym__atom] = STATE(3105), + [sym_quoted_atom] = STATE(3105), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3105), + [sym_charlist] = STATE(3105), + [sym_sigil] = STATE(3105), + [sym_list] = STATE(3105), + [sym_tuple] = STATE(3105), + [sym_bitstring] = STATE(3105), + [sym_map] = STATE(3105), + [sym_unary_operator] = STATE(3105), + [sym_binary_operator] = STATE(3105), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3105), + [sym_call] = STATE(3105), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3105), + [sym_anonymous_function] = STATE(3105), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1983), + [sym_integer] = ACTIONS(1983), + [sym_float] = ACTIONS(1983), + [sym_char] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [564] = { + [sym__expression] = STATE(1413), + [sym_block] = STATE(1413), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1413), + [sym_nil] = STATE(1413), + [sym__atom] = STATE(1413), + [sym_quoted_atom] = STATE(1413), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1413), + [sym_charlist] = STATE(1413), + [sym_sigil] = STATE(1413), + [sym_list] = STATE(1413), + [sym_tuple] = STATE(1413), + [sym_bitstring] = STATE(1413), + [sym_map] = STATE(1413), + [sym_unary_operator] = STATE(1413), + [sym_binary_operator] = STATE(1413), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1413), + [sym_call] = STATE(1413), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1413), + [sym_anonymous_function] = STATE(1413), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1985), + [sym_integer] = ACTIONS(1985), + [sym_float] = ACTIONS(1985), + [sym_char] = ACTIONS(1985), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [565] = { + [sym__expression] = STATE(1428), + [sym_block] = STATE(1428), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1428), + [sym_nil] = STATE(1428), + [sym__atom] = STATE(1428), + [sym_quoted_atom] = STATE(1428), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1428), + [sym_charlist] = STATE(1428), + [sym_sigil] = STATE(1428), + [sym_list] = STATE(1428), + [sym_tuple] = STATE(1428), + [sym_bitstring] = STATE(1428), + [sym_map] = STATE(1428), + [sym_unary_operator] = STATE(1428), + [sym_binary_operator] = STATE(1428), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1428), + [sym_call] = STATE(1428), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1428), + [sym_anonymous_function] = STATE(1428), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1987), + [sym_integer] = ACTIONS(1987), + [sym_float] = ACTIONS(1987), + [sym_char] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [566] = { + [sym__expression] = STATE(3104), + [sym_block] = STATE(3104), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3104), + [sym_nil] = STATE(3104), + [sym__atom] = STATE(3104), + [sym_quoted_atom] = STATE(3104), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3104), + [sym_charlist] = STATE(3104), + [sym_sigil] = STATE(3104), + [sym_list] = STATE(3104), + [sym_tuple] = STATE(3104), + [sym_bitstring] = STATE(3104), + [sym_map] = STATE(3104), + [sym_unary_operator] = STATE(3104), + [sym_binary_operator] = STATE(3104), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3104), + [sym_call] = STATE(3104), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3104), + [sym_anonymous_function] = STATE(3104), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1989), + [sym_integer] = ACTIONS(1989), + [sym_float] = ACTIONS(1989), + [sym_char] = ACTIONS(1989), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [567] = { + [sym__expression] = STATE(1429), + [sym_block] = STATE(1429), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1429), + [sym_nil] = STATE(1429), + [sym__atom] = STATE(1429), + [sym_quoted_atom] = STATE(1429), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1429), + [sym_charlist] = STATE(1429), + [sym_sigil] = STATE(1429), + [sym_list] = STATE(1429), + [sym_tuple] = STATE(1429), + [sym_bitstring] = STATE(1429), + [sym_map] = STATE(1429), + [sym_unary_operator] = STATE(1429), + [sym_binary_operator] = STATE(1429), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1429), + [sym_call] = STATE(1429), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1429), + [sym_anonymous_function] = STATE(1429), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1991), + [sym_integer] = ACTIONS(1991), + [sym_float] = ACTIONS(1991), + [sym_char] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [568] = { + [sym__expression] = STATE(1430), + [sym_block] = STATE(1430), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1430), + [sym_nil] = STATE(1430), + [sym__atom] = STATE(1430), + [sym_quoted_atom] = STATE(1430), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1430), + [sym_charlist] = STATE(1430), + [sym_sigil] = STATE(1430), + [sym_list] = STATE(1430), + [sym_tuple] = STATE(1430), + [sym_bitstring] = STATE(1430), + [sym_map] = STATE(1430), + [sym_unary_operator] = STATE(1430), + [sym_binary_operator] = STATE(1430), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1430), + [sym_call] = STATE(1430), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1430), + [sym_anonymous_function] = STATE(1430), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1993), + [sym_integer] = ACTIONS(1993), + [sym_float] = ACTIONS(1993), + [sym_char] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [569] = { + [sym__expression] = STATE(1437), + [sym_block] = STATE(1437), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1437), + [sym_nil] = STATE(1437), + [sym__atom] = STATE(1437), + [sym_quoted_atom] = STATE(1437), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1437), + [sym_charlist] = STATE(1437), + [sym_sigil] = STATE(1437), + [sym_list] = STATE(1437), + [sym_tuple] = STATE(1437), + [sym_bitstring] = STATE(1437), + [sym_map] = STATE(1437), + [sym_unary_operator] = STATE(1437), + [sym_binary_operator] = STATE(1437), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1437), + [sym_call] = STATE(1437), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1437), + [sym_anonymous_function] = STATE(1437), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_char] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [570] = { + [sym__expression] = STATE(1440), + [sym_block] = STATE(1440), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1440), + [sym_nil] = STATE(1440), + [sym__atom] = STATE(1440), + [sym_quoted_atom] = STATE(1440), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1440), + [sym_charlist] = STATE(1440), + [sym_sigil] = STATE(1440), + [sym_list] = STATE(1440), + [sym_tuple] = STATE(1440), + [sym_bitstring] = STATE(1440), + [sym_map] = STATE(1440), + [sym_unary_operator] = STATE(1440), + [sym_binary_operator] = STATE(1440), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1440), + [sym_call] = STATE(1440), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1440), + [sym_anonymous_function] = STATE(1440), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1997), + [sym_integer] = ACTIONS(1997), + [sym_float] = ACTIONS(1997), + [sym_char] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [571] = { + [sym__expression] = STATE(1441), + [sym_block] = STATE(1441), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1441), + [sym_nil] = STATE(1441), + [sym__atom] = STATE(1441), + [sym_quoted_atom] = STATE(1441), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1441), + [sym_charlist] = STATE(1441), + [sym_sigil] = STATE(1441), + [sym_list] = STATE(1441), + [sym_tuple] = STATE(1441), + [sym_bitstring] = STATE(1441), + [sym_map] = STATE(1441), + [sym_unary_operator] = STATE(1441), + [sym_binary_operator] = STATE(1441), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1441), + [sym_call] = STATE(1441), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1441), + [sym_anonymous_function] = STATE(1441), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1999), + [sym_integer] = ACTIONS(1999), + [sym_float] = ACTIONS(1999), + [sym_char] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [572] = { + [sym__expression] = STATE(1442), + [sym_block] = STATE(1442), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1442), + [sym_nil] = STATE(1442), + [sym__atom] = STATE(1442), + [sym_quoted_atom] = STATE(1442), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1442), + [sym_charlist] = STATE(1442), + [sym_sigil] = STATE(1442), + [sym_list] = STATE(1442), + [sym_tuple] = STATE(1442), + [sym_bitstring] = STATE(1442), + [sym_map] = STATE(1442), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1442), + [sym_call] = STATE(1442), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1442), + [sym_anonymous_function] = STATE(1442), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2001), + [sym_integer] = ACTIONS(2001), + [sym_float] = ACTIONS(2001), + [sym_char] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [573] = { + [sym__expression] = STATE(1474), + [sym_block] = STATE(1474), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1474), + [sym_nil] = STATE(1474), + [sym__atom] = STATE(1474), + [sym_quoted_atom] = STATE(1474), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1474), + [sym_charlist] = STATE(1474), + [sym_sigil] = STATE(1474), + [sym_list] = STATE(1474), + [sym_tuple] = STATE(1474), + [sym_bitstring] = STATE(1474), + [sym_map] = STATE(1474), + [sym_unary_operator] = STATE(1474), + [sym_binary_operator] = STATE(1474), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1474), + [sym_call] = STATE(1474), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1474), + [sym_anonymous_function] = STATE(1474), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2003), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2003), + [sym_char] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [574] = { + [sym__expression] = STATE(1477), + [sym_block] = STATE(1477), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1477), + [sym_nil] = STATE(1477), + [sym__atom] = STATE(1477), + [sym_quoted_atom] = STATE(1477), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1477), + [sym_charlist] = STATE(1477), + [sym_sigil] = STATE(1477), + [sym_list] = STATE(1477), + [sym_tuple] = STATE(1477), + [sym_bitstring] = STATE(1477), + [sym_map] = STATE(1477), + [sym_unary_operator] = STATE(1477), + [sym_binary_operator] = STATE(1477), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1477), + [sym_call] = STATE(1477), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1477), + [sym_anonymous_function] = STATE(1477), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2005), + [sym_integer] = ACTIONS(2005), + [sym_float] = ACTIONS(2005), + [sym_char] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [575] = { + [sym__expression] = STATE(1488), + [sym_block] = STATE(1488), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1488), + [sym_nil] = STATE(1488), + [sym__atom] = STATE(1488), + [sym_quoted_atom] = STATE(1488), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1488), + [sym_charlist] = STATE(1488), + [sym_sigil] = STATE(1488), + [sym_list] = STATE(1488), + [sym_tuple] = STATE(1488), + [sym_bitstring] = STATE(1488), + [sym_map] = STATE(1488), + [sym_unary_operator] = STATE(1488), + [sym_binary_operator] = STATE(1488), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1488), + [sym_call] = STATE(1488), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1488), + [sym_anonymous_function] = STATE(1488), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2007), + [sym_integer] = ACTIONS(2007), + [sym_float] = ACTIONS(2007), + [sym_char] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [576] = { + [sym__expression] = STATE(3352), + [sym_block] = STATE(3352), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3352), + [sym_nil] = STATE(3352), + [sym__atom] = STATE(3352), + [sym_quoted_atom] = STATE(3352), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3352), + [sym_charlist] = STATE(3352), + [sym_sigil] = STATE(3352), + [sym_list] = STATE(3352), + [sym_tuple] = STATE(3352), + [sym_bitstring] = STATE(3352), + [sym_map] = STATE(3352), + [sym_unary_operator] = STATE(3352), + [sym_binary_operator] = STATE(3352), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3352), + [sym_call] = STATE(3352), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3352), + [sym_anonymous_function] = STATE(3352), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1533), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [577] = { + [sym__expression] = STATE(1493), + [sym_block] = STATE(1493), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1493), + [sym_nil] = STATE(1493), + [sym__atom] = STATE(1493), + [sym_quoted_atom] = STATE(1493), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1493), + [sym_charlist] = STATE(1493), + [sym_sigil] = STATE(1493), + [sym_list] = STATE(1493), + [sym_tuple] = STATE(1493), + [sym_bitstring] = STATE(1493), + [sym_map] = STATE(1493), + [sym_unary_operator] = STATE(1493), + [sym_binary_operator] = STATE(1493), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1493), + [sym_call] = STATE(1493), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1493), + [sym_anonymous_function] = STATE(1493), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2009), + [sym_integer] = ACTIONS(2009), + [sym_float] = ACTIONS(2009), + [sym_char] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2009), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [578] = { + [sym__expression] = STATE(3100), + [sym_block] = STATE(3100), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3100), + [sym_nil] = STATE(3100), + [sym__atom] = STATE(3100), + [sym_quoted_atom] = STATE(3100), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3100), + [sym_charlist] = STATE(3100), + [sym_sigil] = STATE(3100), + [sym_list] = STATE(3100), + [sym_tuple] = STATE(3100), + [sym_bitstring] = STATE(3100), + [sym_map] = STATE(3100), + [sym_unary_operator] = STATE(3100), + [sym_binary_operator] = STATE(3100), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3100), + [sym_call] = STATE(3100), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3100), + [sym_anonymous_function] = STATE(3100), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2011), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2011), + [sym_char] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [579] = { + [sym__expression] = STATE(2308), + [sym_block] = STATE(2308), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(2308), + [sym_nil] = STATE(2308), + [sym__atom] = STATE(2308), + [sym_quoted_atom] = STATE(2308), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2308), + [sym_charlist] = STATE(2308), + [sym_sigil] = STATE(2308), + [sym_list] = STATE(2308), + [sym_tuple] = STATE(2308), + [sym_bitstring] = STATE(2308), + [sym_map] = STATE(2308), + [sym_unary_operator] = STATE(2308), + [sym_binary_operator] = STATE(2308), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2308), + [sym_call] = STATE(2308), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2308), + [sym_anonymous_function] = STATE(2308), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2013), + [sym_integer] = ACTIONS(2013), + [sym_float] = ACTIONS(2013), + [sym_char] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [580] = { + [sym__expression] = STATE(2307), + [sym_block] = STATE(2307), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(2307), + [sym_nil] = STATE(2307), + [sym__atom] = STATE(2307), + [sym_quoted_atom] = STATE(2307), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2307), + [sym_charlist] = STATE(2307), + [sym_sigil] = STATE(2307), + [sym_list] = STATE(2307), + [sym_tuple] = STATE(2307), + [sym_bitstring] = STATE(2307), + [sym_map] = STATE(2307), + [sym_unary_operator] = STATE(2307), + [sym_binary_operator] = STATE(2307), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2307), + [sym_call] = STATE(2307), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2307), + [sym_anonymous_function] = STATE(2307), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2015), + [sym_integer] = ACTIONS(2015), + [sym_float] = ACTIONS(2015), + [sym_char] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [581] = { + [sym__expression] = STATE(3315), + [sym_block] = STATE(3315), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3315), + [sym_nil] = STATE(3315), + [sym__atom] = STATE(3315), + [sym_quoted_atom] = STATE(3315), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3315), + [sym_charlist] = STATE(3315), + [sym_sigil] = STATE(3315), + [sym_list] = STATE(3315), + [sym_tuple] = STATE(3315), + [sym_bitstring] = STATE(3315), + [sym_map] = STATE(3315), + [sym_unary_operator] = STATE(3315), + [sym_binary_operator] = STATE(3315), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3315), + [sym_call] = STATE(3315), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3315), + [sym_anonymous_function] = STATE(3315), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2017), + [sym_integer] = ACTIONS(2017), + [sym_float] = ACTIONS(2017), + [sym_char] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [582] = { + [sym__expression] = STATE(3313), + [sym_block] = STATE(3313), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3313), + [sym_nil] = STATE(3313), + [sym__atom] = STATE(3313), + [sym_quoted_atom] = STATE(3313), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3313), + [sym_charlist] = STATE(3313), + [sym_sigil] = STATE(3313), + [sym_list] = STATE(3313), + [sym_tuple] = STATE(3313), + [sym_bitstring] = STATE(3313), + [sym_map] = STATE(3313), + [sym_unary_operator] = STATE(3313), + [sym_binary_operator] = STATE(3313), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3313), + [sym_call] = STATE(3313), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3313), + [sym_anonymous_function] = STATE(3313), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2019), + [sym_integer] = ACTIONS(2019), + [sym_float] = ACTIONS(2019), + [sym_char] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [583] = { + [sym__expression] = STATE(3370), + [sym_block] = STATE(3370), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3370), + [sym_nil] = STATE(3370), + [sym__atom] = STATE(3370), + [sym_quoted_atom] = STATE(3370), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3370), + [sym_charlist] = STATE(3370), + [sym_sigil] = STATE(3370), + [sym_list] = STATE(3370), + [sym_tuple] = STATE(3370), + [sym_bitstring] = STATE(3370), + [sym_map] = STATE(3370), + [sym_unary_operator] = STATE(3370), + [sym_binary_operator] = STATE(3370), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3370), + [sym_call] = STATE(3370), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3370), + [sym_anonymous_function] = STATE(3370), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2021), + [sym_integer] = ACTIONS(2021), + [sym_float] = ACTIONS(2021), + [sym_char] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [584] = { + [sym__expression] = STATE(3310), + [sym_block] = STATE(3310), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3310), + [sym_nil] = STATE(3310), + [sym__atom] = STATE(3310), + [sym_quoted_atom] = STATE(3310), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3310), + [sym_charlist] = STATE(3310), + [sym_sigil] = STATE(3310), + [sym_list] = STATE(3310), + [sym_tuple] = STATE(3310), + [sym_bitstring] = STATE(3310), + [sym_map] = STATE(3310), + [sym_unary_operator] = STATE(3310), + [sym_binary_operator] = STATE(3310), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3310), + [sym_call] = STATE(3310), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3310), + [sym_anonymous_function] = STATE(3310), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2023), + [sym_integer] = ACTIONS(2023), + [sym_float] = ACTIONS(2023), + [sym_char] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [585] = { + [sym__expression] = STATE(3309), + [sym_block] = STATE(3309), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3309), + [sym_nil] = STATE(3309), + [sym__atom] = STATE(3309), + [sym_quoted_atom] = STATE(3309), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3309), + [sym_charlist] = STATE(3309), + [sym_sigil] = STATE(3309), + [sym_list] = STATE(3309), + [sym_tuple] = STATE(3309), + [sym_bitstring] = STATE(3309), + [sym_map] = STATE(3309), + [sym_unary_operator] = STATE(3309), + [sym_binary_operator] = STATE(3309), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3309), + [sym_call] = STATE(3309), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3309), + [sym_anonymous_function] = STATE(3309), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2025), + [sym_integer] = ACTIONS(2025), + [sym_float] = ACTIONS(2025), + [sym_char] = ACTIONS(2025), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [586] = { + [sym__expression] = STATE(3306), + [sym_block] = STATE(3306), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3306), + [sym_nil] = STATE(3306), + [sym__atom] = STATE(3306), + [sym_quoted_atom] = STATE(3306), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3306), + [sym_charlist] = STATE(3306), + [sym_sigil] = STATE(3306), + [sym_list] = STATE(3306), + [sym_tuple] = STATE(3306), + [sym_bitstring] = STATE(3306), + [sym_map] = STATE(3306), + [sym_unary_operator] = STATE(3306), + [sym_binary_operator] = STATE(3306), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3306), + [sym_call] = STATE(3306), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3306), + [sym_anonymous_function] = STATE(3306), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2027), + [sym_integer] = ACTIONS(2027), + [sym_float] = ACTIONS(2027), + [sym_char] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [587] = { + [sym__expression] = STATE(3085), + [sym_block] = STATE(3085), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3085), + [sym_nil] = STATE(3085), + [sym__atom] = STATE(3085), + [sym_quoted_atom] = STATE(3085), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3085), + [sym_charlist] = STATE(3085), + [sym_sigil] = STATE(3085), + [sym_list] = STATE(3085), + [sym_tuple] = STATE(3085), + [sym_bitstring] = STATE(3085), + [sym_map] = STATE(3085), + [sym_unary_operator] = STATE(3085), + [sym_binary_operator] = STATE(3085), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3085), + [sym_call] = STATE(3085), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3085), + [sym_anonymous_function] = STATE(3085), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2029), + [sym_integer] = ACTIONS(2029), + [sym_float] = ACTIONS(2029), + [sym_char] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [588] = { + [sym__expression] = STATE(3387), + [sym_block] = STATE(3387), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3387), + [sym_nil] = STATE(3387), + [sym__atom] = STATE(3387), + [sym_quoted_atom] = STATE(3387), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3387), + [sym_charlist] = STATE(3387), + [sym_sigil] = STATE(3387), + [sym_list] = STATE(3387), + [sym_tuple] = STATE(3387), + [sym_bitstring] = STATE(3387), + [sym_map] = STATE(3387), + [sym_unary_operator] = STATE(3387), + [sym_binary_operator] = STATE(3387), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3387), + [sym_call] = STATE(3387), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3387), + [sym_anonymous_function] = STATE(3387), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2031), + [sym_integer] = ACTIONS(2031), + [sym_float] = ACTIONS(2031), + [sym_char] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [589] = { + [sym__expression] = STATE(3376), + [sym_block] = STATE(3376), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3376), + [sym_nil] = STATE(3376), + [sym__atom] = STATE(3376), + [sym_quoted_atom] = STATE(3376), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3376), + [sym_charlist] = STATE(3376), + [sym_sigil] = STATE(3376), + [sym_list] = STATE(3376), + [sym_tuple] = STATE(3376), + [sym_bitstring] = STATE(3376), + [sym_map] = STATE(3376), + [sym_unary_operator] = STATE(3376), + [sym_binary_operator] = STATE(3376), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3376), + [sym_call] = STATE(3376), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3376), + [sym_anonymous_function] = STATE(3376), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2033), + [sym_integer] = ACTIONS(2033), + [sym_float] = ACTIONS(2033), + [sym_char] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [590] = { + [sym__expression] = STATE(3386), + [sym_block] = STATE(3386), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3386), + [sym_nil] = STATE(3386), + [sym__atom] = STATE(3386), + [sym_quoted_atom] = STATE(3386), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3386), + [sym_charlist] = STATE(3386), + [sym_sigil] = STATE(3386), + [sym_list] = STATE(3386), + [sym_tuple] = STATE(3386), + [sym_bitstring] = STATE(3386), + [sym_map] = STATE(3386), + [sym_unary_operator] = STATE(3386), + [sym_binary_operator] = STATE(3386), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3386), + [sym_call] = STATE(3386), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3386), + [sym_anonymous_function] = STATE(3386), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2035), + [sym_integer] = ACTIONS(2035), + [sym_float] = ACTIONS(2035), + [sym_char] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [591] = { + [sym__expression] = STATE(2267), + [sym_block] = STATE(2267), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2267), + [sym_nil] = STATE(2267), + [sym__atom] = STATE(2267), + [sym_quoted_atom] = STATE(2267), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2267), + [sym_charlist] = STATE(2267), + [sym_sigil] = STATE(2267), + [sym_list] = STATE(2267), + [sym_tuple] = STATE(2267), + [sym_bitstring] = STATE(2267), + [sym_map] = STATE(2267), + [sym_unary_operator] = STATE(2267), + [sym_binary_operator] = STATE(2267), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2267), + [sym_call] = STATE(2267), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2267), + [sym_anonymous_function] = STATE(2267), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2037), + [sym_integer] = ACTIONS(2037), + [sym_float] = ACTIONS(2037), + [sym_char] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [592] = { + [sym__expression] = STATE(1355), + [sym_block] = STATE(1355), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(1355), + [sym_nil] = STATE(1355), + [sym__atom] = STATE(1355), + [sym_quoted_atom] = STATE(1355), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1355), + [sym_charlist] = STATE(1355), + [sym_sigil] = STATE(1355), + [sym_list] = STATE(1355), + [sym_tuple] = STATE(1355), + [sym_bitstring] = STATE(1355), + [sym_map] = STATE(1355), + [sym_unary_operator] = STATE(1355), + [sym_binary_operator] = STATE(1355), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1355), + [sym_call] = STATE(1355), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1355), + [sym_anonymous_function] = STATE(1355), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2039), + [sym_integer] = ACTIONS(2039), + [sym_float] = ACTIONS(2039), + [sym_char] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [593] = { + [sym__expression] = STATE(3379), + [sym_block] = STATE(3379), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3379), + [sym_nil] = STATE(3379), + [sym__atom] = STATE(3379), + [sym_quoted_atom] = STATE(3379), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3379), + [sym_charlist] = STATE(3379), + [sym_sigil] = STATE(3379), + [sym_list] = STATE(3379), + [sym_tuple] = STATE(3379), + [sym_bitstring] = STATE(3379), + [sym_map] = STATE(3379), + [sym_unary_operator] = STATE(3379), + [sym_binary_operator] = STATE(3379), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3379), + [sym_call] = STATE(3379), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3379), + [sym_anonymous_function] = STATE(3379), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2041), + [sym_integer] = ACTIONS(2041), + [sym_float] = ACTIONS(2041), + [sym_char] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [594] = { + [sym__expression] = STATE(3378), + [sym_block] = STATE(3378), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3378), + [sym_nil] = STATE(3378), + [sym__atom] = STATE(3378), + [sym_quoted_atom] = STATE(3378), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3378), + [sym_charlist] = STATE(3378), + [sym_sigil] = STATE(3378), + [sym_list] = STATE(3378), + [sym_tuple] = STATE(3378), + [sym_bitstring] = STATE(3378), + [sym_map] = STATE(3378), + [sym_unary_operator] = STATE(3378), + [sym_binary_operator] = STATE(3378), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3378), + [sym_call] = STATE(3378), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3378), + [sym_anonymous_function] = STATE(3378), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2043), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2043), + [sym_char] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [595] = { + [sym__expression] = STATE(3302), + [sym_block] = STATE(3302), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3302), + [sym_nil] = STATE(3302), + [sym__atom] = STATE(3302), + [sym_quoted_atom] = STATE(3302), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3302), + [sym_charlist] = STATE(3302), + [sym_sigil] = STATE(3302), + [sym_list] = STATE(3302), + [sym_tuple] = STATE(3302), + [sym_bitstring] = STATE(3302), + [sym_map] = STATE(3302), + [sym_unary_operator] = STATE(3302), + [sym_binary_operator] = STATE(3302), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3302), + [sym_call] = STATE(3302), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3302), + [sym_anonymous_function] = STATE(3302), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2045), + [sym_integer] = ACTIONS(2045), + [sym_float] = ACTIONS(2045), + [sym_char] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [596] = { + [sym__expression] = STATE(1502), + [sym_block] = STATE(1502), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1502), + [sym_nil] = STATE(1502), + [sym__atom] = STATE(1502), + [sym_quoted_atom] = STATE(1502), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1502), + [sym_charlist] = STATE(1502), + [sym_sigil] = STATE(1502), + [sym_list] = STATE(1502), + [sym_tuple] = STATE(1502), + [sym_bitstring] = STATE(1502), + [sym_map] = STATE(1502), + [sym_unary_operator] = STATE(1502), + [sym_binary_operator] = STATE(1502), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1502), + [sym_call] = STATE(1502), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1502), + [sym_anonymous_function] = STATE(1502), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2047), + [sym_integer] = ACTIONS(2047), + [sym_float] = ACTIONS(2047), + [sym_char] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [597] = { + [sym__expression] = STATE(3044), + [sym_block] = STATE(3044), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3044), + [sym_nil] = STATE(3044), + [sym__atom] = STATE(3044), + [sym_quoted_atom] = STATE(3044), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3044), + [sym_charlist] = STATE(3044), + [sym_sigil] = STATE(3044), + [sym_list] = STATE(3044), + [sym_tuple] = STATE(3044), + [sym_bitstring] = STATE(3044), + [sym_map] = STATE(3044), + [sym_unary_operator] = STATE(3044), + [sym_binary_operator] = STATE(3044), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3044), + [sym_call] = STATE(3044), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3044), + [sym_anonymous_function] = STATE(3044), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2049), + [sym_integer] = ACTIONS(2049), + [sym_float] = ACTIONS(2049), + [sym_char] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [598] = { + [sym__expression] = STATE(2631), + [sym_block] = STATE(2631), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2631), + [sym_nil] = STATE(2631), + [sym__atom] = STATE(2631), + [sym_quoted_atom] = STATE(2631), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2631), + [sym_charlist] = STATE(2631), + [sym_sigil] = STATE(2631), + [sym_list] = STATE(2631), + [sym_tuple] = STATE(2631), + [sym_bitstring] = STATE(2631), + [sym_map] = STATE(2631), + [sym_unary_operator] = STATE(2631), + [sym_binary_operator] = STATE(2631), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2631), + [sym_call] = STATE(2631), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2631), + [sym_anonymous_function] = STATE(2631), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2051), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2051), + [sym_char] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [599] = { + [sym__expression] = STATE(2297), + [sym_block] = STATE(2297), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2297), + [sym_nil] = STATE(2297), + [sym__atom] = STATE(2297), + [sym_quoted_atom] = STATE(2297), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2297), + [sym_charlist] = STATE(2297), + [sym_sigil] = STATE(2297), + [sym_list] = STATE(2297), + [sym_tuple] = STATE(2297), + [sym_bitstring] = STATE(2297), + [sym_map] = STATE(2297), + [sym_unary_operator] = STATE(2297), + [sym_binary_operator] = STATE(2297), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2297), + [sym_call] = STATE(2297), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2297), + [sym_anonymous_function] = STATE(2297), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2053), + [sym_integer] = ACTIONS(2053), + [sym_float] = ACTIONS(2053), + [sym_char] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [600] = { + [sym__expression] = STATE(1370), + [sym_block] = STATE(1370), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(1370), + [sym_nil] = STATE(1370), + [sym__atom] = STATE(1370), + [sym_quoted_atom] = STATE(1370), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1370), + [sym_charlist] = STATE(1370), + [sym_sigil] = STATE(1370), + [sym_list] = STATE(1370), + [sym_tuple] = STATE(1370), + [sym_bitstring] = STATE(1370), + [sym_map] = STATE(1370), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1370), + [sym_call] = STATE(1370), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1370), + [sym_anonymous_function] = STATE(1370), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2055), + [sym_integer] = ACTIONS(2055), + [sym_float] = ACTIONS(2055), + [sym_char] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [601] = { + [sym__expression] = STATE(2522), + [sym_block] = STATE(2522), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2522), + [sym_nil] = STATE(2522), + [sym__atom] = STATE(2522), + [sym_quoted_atom] = STATE(2522), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2522), + [sym_charlist] = STATE(2522), + [sym_sigil] = STATE(2522), + [sym_list] = STATE(2522), + [sym_tuple] = STATE(2522), + [sym_bitstring] = STATE(2522), + [sym_map] = STATE(2522), + [sym_unary_operator] = STATE(2522), + [sym_binary_operator] = STATE(2522), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2522), + [sym_call] = STATE(2522), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2522), + [sym_anonymous_function] = STATE(2522), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2057), + [sym_integer] = ACTIONS(2057), + [sym_float] = ACTIONS(2057), + [sym_char] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [602] = { + [sym__expression] = STATE(2523), + [sym_block] = STATE(2523), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2523), + [sym_nil] = STATE(2523), + [sym__atom] = STATE(2523), + [sym_quoted_atom] = STATE(2523), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2523), + [sym_charlist] = STATE(2523), + [sym_sigil] = STATE(2523), + [sym_list] = STATE(2523), + [sym_tuple] = STATE(2523), + [sym_bitstring] = STATE(2523), + [sym_map] = STATE(2523), + [sym_unary_operator] = STATE(2523), + [sym_binary_operator] = STATE(2523), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2523), + [sym_call] = STATE(2523), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2523), + [sym_anonymous_function] = STATE(2523), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2059), + [sym_integer] = ACTIONS(2059), + [sym_float] = ACTIONS(2059), + [sym_char] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [603] = { + [sym__expression] = STATE(1507), + [sym_block] = STATE(1507), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1507), + [sym_nil] = STATE(1507), + [sym__atom] = STATE(1507), + [sym_quoted_atom] = STATE(1507), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1507), + [sym_charlist] = STATE(1507), + [sym_sigil] = STATE(1507), + [sym_list] = STATE(1507), + [sym_tuple] = STATE(1507), + [sym_bitstring] = STATE(1507), + [sym_map] = STATE(1507), + [sym_unary_operator] = STATE(1507), + [sym_binary_operator] = STATE(1507), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1507), + [sym_call] = STATE(1507), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1507), + [sym_anonymous_function] = STATE(1507), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2061), + [sym_integer] = ACTIONS(2061), + [sym_float] = ACTIONS(2061), + [sym_char] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [604] = { + [sym__expression] = STATE(2525), + [sym_block] = STATE(2525), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2525), + [sym_nil] = STATE(2525), + [sym__atom] = STATE(2525), + [sym_quoted_atom] = STATE(2525), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2525), + [sym_charlist] = STATE(2525), + [sym_sigil] = STATE(2525), + [sym_list] = STATE(2525), + [sym_tuple] = STATE(2525), + [sym_bitstring] = STATE(2525), + [sym_map] = STATE(2525), + [sym_unary_operator] = STATE(2525), + [sym_binary_operator] = STATE(2525), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2525), + [sym_call] = STATE(2525), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2525), + [sym_anonymous_function] = STATE(2525), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2063), + [sym_integer] = ACTIONS(2063), + [sym_float] = ACTIONS(2063), + [sym_char] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [605] = { + [sym__expression] = STATE(3298), + [sym_block] = STATE(3298), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3298), + [sym_nil] = STATE(3298), + [sym__atom] = STATE(3298), + [sym_quoted_atom] = STATE(3298), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3298), + [sym_charlist] = STATE(3298), + [sym_sigil] = STATE(3298), + [sym_list] = STATE(3298), + [sym_tuple] = STATE(3298), + [sym_bitstring] = STATE(3298), + [sym_map] = STATE(3298), + [sym_unary_operator] = STATE(3298), + [sym_binary_operator] = STATE(3298), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3298), + [sym_call] = STATE(3298), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3298), + [sym_anonymous_function] = STATE(3298), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2065), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2065), + [sym_char] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [606] = { + [sym__expression] = STATE(2526), + [sym_block] = STATE(2526), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2526), + [sym_nil] = STATE(2526), + [sym__atom] = STATE(2526), + [sym_quoted_atom] = STATE(2526), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2526), + [sym_charlist] = STATE(2526), + [sym_sigil] = STATE(2526), + [sym_list] = STATE(2526), + [sym_tuple] = STATE(2526), + [sym_bitstring] = STATE(2526), + [sym_map] = STATE(2526), + [sym_unary_operator] = STATE(2526), + [sym_binary_operator] = STATE(2526), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2526), + [sym_call] = STATE(2526), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2526), + [sym_anonymous_function] = STATE(2526), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2067), + [sym_integer] = ACTIONS(2067), + [sym_float] = ACTIONS(2067), + [sym_char] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [607] = { + [sym__expression] = STATE(2527), + [sym_block] = STATE(2527), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2527), + [sym_nil] = STATE(2527), + [sym__atom] = STATE(2527), + [sym_quoted_atom] = STATE(2527), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2527), + [sym_charlist] = STATE(2527), + [sym_sigil] = STATE(2527), + [sym_list] = STATE(2527), + [sym_tuple] = STATE(2527), + [sym_bitstring] = STATE(2527), + [sym_map] = STATE(2527), + [sym_unary_operator] = STATE(2527), + [sym_binary_operator] = STATE(2527), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2527), + [sym_call] = STATE(2527), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2527), + [sym_anonymous_function] = STATE(2527), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2069), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2069), + [sym_char] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [608] = { + [sym__expression] = STATE(1510), + [sym_block] = STATE(1510), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1510), + [sym_nil] = STATE(1510), + [sym__atom] = STATE(1510), + [sym_quoted_atom] = STATE(1510), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1510), + [sym_charlist] = STATE(1510), + [sym_sigil] = STATE(1510), + [sym_list] = STATE(1510), + [sym_tuple] = STATE(1510), + [sym_bitstring] = STATE(1510), + [sym_map] = STATE(1510), + [sym_unary_operator] = STATE(1510), + [sym_binary_operator] = STATE(1510), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1510), + [sym_call] = STATE(1510), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1510), + [sym_anonymous_function] = STATE(1510), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2071), + [sym_integer] = ACTIONS(2071), + [sym_float] = ACTIONS(2071), + [sym_char] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [609] = { + [sym__expression] = STATE(1513), + [sym_block] = STATE(1513), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1513), + [sym_nil] = STATE(1513), + [sym__atom] = STATE(1513), + [sym_quoted_atom] = STATE(1513), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1513), + [sym_charlist] = STATE(1513), + [sym_sigil] = STATE(1513), + [sym_list] = STATE(1513), + [sym_tuple] = STATE(1513), + [sym_bitstring] = STATE(1513), + [sym_map] = STATE(1513), + [sym_unary_operator] = STATE(1513), + [sym_binary_operator] = STATE(1513), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1513), + [sym_call] = STATE(1513), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1513), + [sym_anonymous_function] = STATE(1513), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2073), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2073), + [sym_char] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [610] = { + [sym__expression] = STATE(1370), + [sym_block] = STATE(1370), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1370), + [sym_nil] = STATE(1370), + [sym__atom] = STATE(1370), + [sym_quoted_atom] = STATE(1370), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1370), + [sym_charlist] = STATE(1370), + [sym_sigil] = STATE(1370), + [sym_list] = STATE(1370), + [sym_tuple] = STATE(1370), + [sym_bitstring] = STATE(1370), + [sym_map] = STATE(1370), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1370), + [sym_call] = STATE(1370), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1370), + [sym_anonymous_function] = STATE(1370), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2055), + [sym_integer] = ACTIONS(2055), + [sym_float] = ACTIONS(2055), + [sym_char] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [611] = { + [sym__expression] = STATE(1415), + [sym_block] = STATE(1415), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1415), + [sym_nil] = STATE(1415), + [sym__atom] = STATE(1415), + [sym_quoted_atom] = STATE(1415), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1415), + [sym_charlist] = STATE(1415), + [sym_sigil] = STATE(1415), + [sym_list] = STATE(1415), + [sym_tuple] = STATE(1415), + [sym_bitstring] = STATE(1415), + [sym_map] = STATE(1415), + [sym_unary_operator] = STATE(1415), + [sym_binary_operator] = STATE(1415), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1415), + [sym_call] = STATE(1415), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1415), + [sym_anonymous_function] = STATE(1415), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2075), + [sym_integer] = ACTIONS(2075), + [sym_float] = ACTIONS(2075), + [sym_char] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [612] = { + [sym__expression] = STATE(3296), + [sym_block] = STATE(3296), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3296), + [sym_nil] = STATE(3296), + [sym__atom] = STATE(3296), + [sym_quoted_atom] = STATE(3296), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3296), + [sym_charlist] = STATE(3296), + [sym_sigil] = STATE(3296), + [sym_list] = STATE(3296), + [sym_tuple] = STATE(3296), + [sym_bitstring] = STATE(3296), + [sym_map] = STATE(3296), + [sym_unary_operator] = STATE(3296), + [sym_binary_operator] = STATE(3296), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3296), + [sym_call] = STATE(3296), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3296), + [sym_anonymous_function] = STATE(3296), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2077), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2077), + [sym_char] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [613] = { + [sym__expression] = STATE(3295), + [sym_block] = STATE(3295), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3295), + [sym_nil] = STATE(3295), + [sym__atom] = STATE(3295), + [sym_quoted_atom] = STATE(3295), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3295), + [sym_charlist] = STATE(3295), + [sym_sigil] = STATE(3295), + [sym_list] = STATE(3295), + [sym_tuple] = STATE(3295), + [sym_bitstring] = STATE(3295), + [sym_map] = STATE(3295), + [sym_unary_operator] = STATE(3295), + [sym_binary_operator] = STATE(3295), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3295), + [sym_call] = STATE(3295), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3295), + [sym_anonymous_function] = STATE(3295), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2079), + [sym_integer] = ACTIONS(2079), + [sym_float] = ACTIONS(2079), + [sym_char] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [614] = { + [sym__expression] = STATE(3294), + [sym_block] = STATE(3294), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3294), + [sym_nil] = STATE(3294), + [sym__atom] = STATE(3294), + [sym_quoted_atom] = STATE(3294), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3294), + [sym_charlist] = STATE(3294), + [sym_sigil] = STATE(3294), + [sym_list] = STATE(3294), + [sym_tuple] = STATE(3294), + [sym_bitstring] = STATE(3294), + [sym_map] = STATE(3294), + [sym_unary_operator] = STATE(3294), + [sym_binary_operator] = STATE(3294), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3294), + [sym_call] = STATE(3294), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3294), + [sym_anonymous_function] = STATE(3294), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2081), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2081), + [sym_char] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [615] = { + [sym__expression] = STATE(3346), + [sym_block] = STATE(3346), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3346), + [sym_nil] = STATE(3346), + [sym__atom] = STATE(3346), + [sym_quoted_atom] = STATE(3346), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3346), + [sym_charlist] = STATE(3346), + [sym_sigil] = STATE(3346), + [sym_list] = STATE(3346), + [sym_tuple] = STATE(3346), + [sym_bitstring] = STATE(3346), + [sym_map] = STATE(3346), + [sym_unary_operator] = STATE(3346), + [sym_binary_operator] = STATE(3346), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3346), + [sym_call] = STATE(3346), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3346), + [sym_anonymous_function] = STATE(3346), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1333), + [sym_char] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [616] = { + [sym__expression] = STATE(1355), + [sym_block] = STATE(1355), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1355), + [sym_nil] = STATE(1355), + [sym__atom] = STATE(1355), + [sym_quoted_atom] = STATE(1355), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1355), + [sym_charlist] = STATE(1355), + [sym_sigil] = STATE(1355), + [sym_list] = STATE(1355), + [sym_tuple] = STATE(1355), + [sym_bitstring] = STATE(1355), + [sym_map] = STATE(1355), + [sym_unary_operator] = STATE(1355), + [sym_binary_operator] = STATE(1355), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1355), + [sym_call] = STATE(1355), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1355), + [sym_anonymous_function] = STATE(1355), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2039), + [sym_integer] = ACTIONS(2039), + [sym_float] = ACTIONS(2039), + [sym_char] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [617] = { + [sym__expression] = STATE(1416), + [sym_block] = STATE(1416), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1416), + [sym_nil] = STATE(1416), + [sym__atom] = STATE(1416), + [sym_quoted_atom] = STATE(1416), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1416), + [sym_charlist] = STATE(1416), + [sym_sigil] = STATE(1416), + [sym_list] = STATE(1416), + [sym_tuple] = STATE(1416), + [sym_bitstring] = STATE(1416), + [sym_map] = STATE(1416), + [sym_unary_operator] = STATE(1416), + [sym_binary_operator] = STATE(1416), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1416), + [sym_call] = STATE(1416), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1416), + [sym_anonymous_function] = STATE(1416), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2083), + [sym_integer] = ACTIONS(2083), + [sym_float] = ACTIONS(2083), + [sym_char] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [618] = { + [sym__expression] = STATE(3293), + [sym_block] = STATE(3293), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3293), + [sym_nil] = STATE(3293), + [sym__atom] = STATE(3293), + [sym_quoted_atom] = STATE(3293), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3293), + [sym_charlist] = STATE(3293), + [sym_sigil] = STATE(3293), + [sym_list] = STATE(3293), + [sym_tuple] = STATE(3293), + [sym_bitstring] = STATE(3293), + [sym_map] = STATE(3293), + [sym_unary_operator] = STATE(3293), + [sym_binary_operator] = STATE(3293), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3293), + [sym_call] = STATE(3293), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3293), + [sym_anonymous_function] = STATE(3293), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2085), + [sym_integer] = ACTIONS(2085), + [sym_float] = ACTIONS(2085), + [sym_char] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [619] = { + [sym__expression] = STATE(3292), + [sym_block] = STATE(3292), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3292), + [sym_nil] = STATE(3292), + [sym__atom] = STATE(3292), + [sym_quoted_atom] = STATE(3292), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3292), + [sym_charlist] = STATE(3292), + [sym_sigil] = STATE(3292), + [sym_list] = STATE(3292), + [sym_tuple] = STATE(3292), + [sym_bitstring] = STATE(3292), + [sym_map] = STATE(3292), + [sym_unary_operator] = STATE(3292), + [sym_binary_operator] = STATE(3292), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3292), + [sym_call] = STATE(3292), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3292), + [sym_anonymous_function] = STATE(3292), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2087), + [sym_integer] = ACTIONS(2087), + [sym_float] = ACTIONS(2087), + [sym_char] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [620] = { + [sym__expression] = STATE(2530), + [sym_block] = STATE(2530), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2530), + [sym_nil] = STATE(2530), + [sym__atom] = STATE(2530), + [sym_quoted_atom] = STATE(2530), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2530), + [sym_charlist] = STATE(2530), + [sym_sigil] = STATE(2530), + [sym_list] = STATE(2530), + [sym_tuple] = STATE(2530), + [sym_bitstring] = STATE(2530), + [sym_map] = STATE(2530), + [sym_unary_operator] = STATE(2530), + [sym_binary_operator] = STATE(2530), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2530), + [sym_call] = STATE(2530), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2530), + [sym_anonymous_function] = STATE(2530), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2089), + [sym_integer] = ACTIONS(2089), + [sym_float] = ACTIONS(2089), + [sym_char] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [621] = { + [sym__expression] = STATE(2531), + [sym_block] = STATE(2531), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2531), + [sym_nil] = STATE(2531), + [sym__atom] = STATE(2531), + [sym_quoted_atom] = STATE(2531), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2531), + [sym_charlist] = STATE(2531), + [sym_sigil] = STATE(2531), + [sym_list] = STATE(2531), + [sym_tuple] = STATE(2531), + [sym_bitstring] = STATE(2531), + [sym_map] = STATE(2531), + [sym_unary_operator] = STATE(2531), + [sym_binary_operator] = STATE(2531), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2531), + [sym_call] = STATE(2531), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2531), + [sym_anonymous_function] = STATE(2531), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2091), + [sym_integer] = ACTIONS(2091), + [sym_float] = ACTIONS(2091), + [sym_char] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2091), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [622] = { + [sym__expression] = STATE(2532), + [sym_block] = STATE(2532), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2532), + [sym_nil] = STATE(2532), + [sym__atom] = STATE(2532), + [sym_quoted_atom] = STATE(2532), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2532), + [sym_charlist] = STATE(2532), + [sym_sigil] = STATE(2532), + [sym_list] = STATE(2532), + [sym_tuple] = STATE(2532), + [sym_bitstring] = STATE(2532), + [sym_map] = STATE(2532), + [sym_unary_operator] = STATE(2532), + [sym_binary_operator] = STATE(2532), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2532), + [sym_call] = STATE(2532), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2532), + [sym_anonymous_function] = STATE(2532), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2093), + [sym_integer] = ACTIONS(2093), + [sym_float] = ACTIONS(2093), + [sym_char] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [623] = { + [sym__expression] = STATE(3291), + [sym_block] = STATE(3291), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3291), + [sym_nil] = STATE(3291), + [sym__atom] = STATE(3291), + [sym_quoted_atom] = STATE(3291), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3291), + [sym_charlist] = STATE(3291), + [sym_sigil] = STATE(3291), + [sym_list] = STATE(3291), + [sym_tuple] = STATE(3291), + [sym_bitstring] = STATE(3291), + [sym_map] = STATE(3291), + [sym_unary_operator] = STATE(3291), + [sym_binary_operator] = STATE(3291), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3291), + [sym_call] = STATE(3291), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3291), + [sym_anonymous_function] = STATE(3291), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2095), + [sym_integer] = ACTIONS(2095), + [sym_float] = ACTIONS(2095), + [sym_char] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [624] = { + [sym__expression] = STATE(3289), + [sym_block] = STATE(3289), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3289), + [sym_nil] = STATE(3289), + [sym__atom] = STATE(3289), + [sym_quoted_atom] = STATE(3289), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3289), + [sym_charlist] = STATE(3289), + [sym_sigil] = STATE(3289), + [sym_list] = STATE(3289), + [sym_tuple] = STATE(3289), + [sym_bitstring] = STATE(3289), + [sym_map] = STATE(3289), + [sym_unary_operator] = STATE(3289), + [sym_binary_operator] = STATE(3289), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3289), + [sym_call] = STATE(3289), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3289), + [sym_anonymous_function] = STATE(3289), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2097), + [sym_integer] = ACTIONS(2097), + [sym_float] = ACTIONS(2097), + [sym_char] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [625] = { + [sym__expression] = STATE(3287), + [sym_block] = STATE(3287), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3287), + [sym_nil] = STATE(3287), + [sym__atom] = STATE(3287), + [sym_quoted_atom] = STATE(3287), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3287), + [sym_charlist] = STATE(3287), + [sym_sigil] = STATE(3287), + [sym_list] = STATE(3287), + [sym_tuple] = STATE(3287), + [sym_bitstring] = STATE(3287), + [sym_map] = STATE(3287), + [sym_unary_operator] = STATE(3287), + [sym_binary_operator] = STATE(3287), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3287), + [sym_call] = STATE(3287), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3287), + [sym_anonymous_function] = STATE(3287), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2099), + [sym_integer] = ACTIONS(2099), + [sym_float] = ACTIONS(2099), + [sym_char] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [626] = { + [sym__expression] = STATE(3038), + [sym_block] = STATE(3038), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3038), + [sym_nil] = STATE(3038), + [sym__atom] = STATE(3038), + [sym_quoted_atom] = STATE(3038), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3038), + [sym_charlist] = STATE(3038), + [sym_sigil] = STATE(3038), + [sym_list] = STATE(3038), + [sym_tuple] = STATE(3038), + [sym_bitstring] = STATE(3038), + [sym_map] = STATE(3038), + [sym_unary_operator] = STATE(3038), + [sym_binary_operator] = STATE(3038), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3038), + [sym_call] = STATE(3038), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3038), + [sym_anonymous_function] = STATE(3038), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2101), + [sym_integer] = ACTIONS(2101), + [sym_float] = ACTIONS(2101), + [sym_char] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [627] = { + [sym__expression] = STATE(2282), + [sym_block] = STATE(2282), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(2282), + [sym_nil] = STATE(2282), + [sym__atom] = STATE(2282), + [sym_quoted_atom] = STATE(2282), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2282), + [sym_charlist] = STATE(2282), + [sym_sigil] = STATE(2282), + [sym_list] = STATE(2282), + [sym_tuple] = STATE(2282), + [sym_bitstring] = STATE(2282), + [sym_map] = STATE(2282), + [sym_unary_operator] = STATE(2282), + [sym_binary_operator] = STATE(2282), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2282), + [sym_call] = STATE(2282), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2282), + [sym_anonymous_function] = STATE(2282), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2103), + [sym_integer] = ACTIONS(2103), + [sym_float] = ACTIONS(2103), + [sym_char] = ACTIONS(2103), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [628] = { + [sym__expression] = STATE(2006), + [sym_block] = STATE(2006), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2006), + [sym_nil] = STATE(2006), + [sym__atom] = STATE(2006), + [sym_quoted_atom] = STATE(2006), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2006), + [sym_charlist] = STATE(2006), + [sym_sigil] = STATE(2006), + [sym_list] = STATE(2006), + [sym_tuple] = STATE(2006), + [sym_bitstring] = STATE(2006), + [sym_map] = STATE(2006), + [sym_unary_operator] = STATE(2006), + [sym_binary_operator] = STATE(2006), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2006), + [sym_call] = STATE(2006), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2006), + [sym_anonymous_function] = STATE(2006), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_char] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [629] = { + [sym__expression] = STATE(2533), + [sym_block] = STATE(2533), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2533), + [sym_nil] = STATE(2533), + [sym__atom] = STATE(2533), + [sym_quoted_atom] = STATE(2533), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2533), + [sym_charlist] = STATE(2533), + [sym_sigil] = STATE(2533), + [sym_list] = STATE(2533), + [sym_tuple] = STATE(2533), + [sym_bitstring] = STATE(2533), + [sym_map] = STATE(2533), + [sym_unary_operator] = STATE(2533), + [sym_binary_operator] = STATE(2533), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2533), + [sym_call] = STATE(2533), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2533), + [sym_anonymous_function] = STATE(2533), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2105), + [sym_integer] = ACTIONS(2105), + [sym_float] = ACTIONS(2105), + [sym_char] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [630] = { + [sym__expression] = STATE(2534), + [sym_block] = STATE(2534), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2534), + [sym_nil] = STATE(2534), + [sym__atom] = STATE(2534), + [sym_quoted_atom] = STATE(2534), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2534), + [sym_charlist] = STATE(2534), + [sym_sigil] = STATE(2534), + [sym_list] = STATE(2534), + [sym_tuple] = STATE(2534), + [sym_bitstring] = STATE(2534), + [sym_map] = STATE(2534), + [sym_unary_operator] = STATE(2534), + [sym_binary_operator] = STATE(2534), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2534), + [sym_call] = STATE(2534), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2534), + [sym_anonymous_function] = STATE(2534), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2107), + [sym_integer] = ACTIONS(2107), + [sym_float] = ACTIONS(2107), + [sym_char] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [631] = { + [sym__expression] = STATE(3348), + [sym_block] = STATE(3348), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3348), + [sym_nil] = STATE(3348), + [sym__atom] = STATE(3348), + [sym_quoted_atom] = STATE(3348), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3348), + [sym_charlist] = STATE(3348), + [sym_sigil] = STATE(3348), + [sym_list] = STATE(3348), + [sym_tuple] = STATE(3348), + [sym_bitstring] = STATE(3348), + [sym_map] = STATE(3348), + [sym_unary_operator] = STATE(3348), + [sym_binary_operator] = STATE(3348), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3348), + [sym_call] = STATE(3348), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3348), + [sym_anonymous_function] = STATE(3348), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(1529), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1529), + [sym_char] = ACTIONS(1529), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [632] = { + [sym__expression] = STATE(3368), + [sym_block] = STATE(3368), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3368), + [sym_nil] = STATE(3368), + [sym__atom] = STATE(3368), + [sym_quoted_atom] = STATE(3368), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3368), + [sym_charlist] = STATE(3368), + [sym_sigil] = STATE(3368), + [sym_list] = STATE(3368), + [sym_tuple] = STATE(3368), + [sym_bitstring] = STATE(3368), + [sym_map] = STATE(3368), + [sym_unary_operator] = STATE(3368), + [sym_binary_operator] = STATE(3368), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3368), + [sym_call] = STATE(3368), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3368), + [sym_anonymous_function] = STATE(3368), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2109), + [sym_integer] = ACTIONS(2109), + [sym_float] = ACTIONS(2109), + [sym_char] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [633] = { + [sym__expression] = STATE(1780), + [sym_block] = STATE(1780), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(1780), + [sym_nil] = STATE(1780), + [sym__atom] = STATE(1780), + [sym_quoted_atom] = STATE(1780), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1780), + [sym_charlist] = STATE(1780), + [sym_sigil] = STATE(1780), + [sym_list] = STATE(1780), + [sym_tuple] = STATE(1780), + [sym_bitstring] = STATE(1780), + [sym_map] = STATE(1780), + [sym_unary_operator] = STATE(1780), + [sym_binary_operator] = STATE(1780), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1780), + [sym_call] = STATE(1780), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1780), + [sym_anonymous_function] = STATE(1780), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2111), + [sym_integer] = ACTIONS(2111), + [sym_float] = ACTIONS(2111), + [sym_char] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [634] = { + [sym__expression] = STATE(1781), + [sym_block] = STATE(1781), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(1781), + [sym_nil] = STATE(1781), + [sym__atom] = STATE(1781), + [sym_quoted_atom] = STATE(1781), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1781), + [sym_charlist] = STATE(1781), + [sym_sigil] = STATE(1781), + [sym_list] = STATE(1781), + [sym_tuple] = STATE(1781), + [sym_bitstring] = STATE(1781), + [sym_map] = STATE(1781), + [sym_unary_operator] = STATE(1781), + [sym_binary_operator] = STATE(1781), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1781), + [sym_call] = STATE(1781), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1781), + [sym_anonymous_function] = STATE(1781), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2113), + [sym_integer] = ACTIONS(2113), + [sym_float] = ACTIONS(2113), + [sym_char] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [635] = { + [sym__expression] = STATE(3375), + [sym_block] = STATE(3375), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3375), + [sym_nil] = STATE(3375), + [sym__atom] = STATE(3375), + [sym_quoted_atom] = STATE(3375), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3375), + [sym_charlist] = STATE(3375), + [sym_sigil] = STATE(3375), + [sym_list] = STATE(3375), + [sym_tuple] = STATE(3375), + [sym_bitstring] = STATE(3375), + [sym_map] = STATE(3375), + [sym_unary_operator] = STATE(3375), + [sym_binary_operator] = STATE(3375), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3375), + [sym_call] = STATE(3375), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3375), + [sym_anonymous_function] = STATE(3375), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2115), + [sym_integer] = ACTIONS(2115), + [sym_float] = ACTIONS(2115), + [sym_char] = ACTIONS(2115), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [636] = { + [sym__expression] = STATE(1809), + [sym_block] = STATE(1809), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(1809), + [sym_nil] = STATE(1809), + [sym__atom] = STATE(1809), + [sym_quoted_atom] = STATE(1809), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1809), + [sym_charlist] = STATE(1809), + [sym_sigil] = STATE(1809), + [sym_list] = STATE(1809), + [sym_tuple] = STATE(1809), + [sym_bitstring] = STATE(1809), + [sym_map] = STATE(1809), + [sym_unary_operator] = STATE(1809), + [sym_binary_operator] = STATE(1809), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1809), + [sym_call] = STATE(1809), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1809), + [sym_anonymous_function] = STATE(1809), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2117), + [sym_integer] = ACTIONS(2117), + [sym_float] = ACTIONS(2117), + [sym_char] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [637] = { + [sym__expression] = STATE(1810), + [sym_block] = STATE(1810), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(1810), + [sym_nil] = STATE(1810), + [sym__atom] = STATE(1810), + [sym_quoted_atom] = STATE(1810), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1810), + [sym_charlist] = STATE(1810), + [sym_sigil] = STATE(1810), + [sym_list] = STATE(1810), + [sym_tuple] = STATE(1810), + [sym_bitstring] = STATE(1810), + [sym_map] = STATE(1810), + [sym_unary_operator] = STATE(1810), + [sym_binary_operator] = STATE(1810), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1810), + [sym_call] = STATE(1810), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1810), + [sym_anonymous_function] = STATE(1810), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2119), + [sym_integer] = ACTIONS(2119), + [sym_float] = ACTIONS(2119), + [sym_char] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [638] = { + [sym__expression] = STATE(2654), + [sym_block] = STATE(2654), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2654), + [sym_nil] = STATE(2654), + [sym__atom] = STATE(2654), + [sym_quoted_atom] = STATE(2654), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2654), + [sym_charlist] = STATE(2654), + [sym_sigil] = STATE(2654), + [sym_list] = STATE(2654), + [sym_tuple] = STATE(2654), + [sym_bitstring] = STATE(2654), + [sym_map] = STATE(2654), + [sym_unary_operator] = STATE(2654), + [sym_binary_operator] = STATE(2654), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2654), + [sym_call] = STATE(2654), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2654), + [sym_anonymous_function] = STATE(2654), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2121), + [sym_integer] = ACTIONS(2121), + [sym_float] = ACTIONS(2121), + [sym_char] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [639] = { + [sym__expression] = STATE(2677), + [sym_block] = STATE(2677), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2677), + [sym_nil] = STATE(2677), + [sym__atom] = STATE(2677), + [sym_quoted_atom] = STATE(2677), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2677), + [sym_charlist] = STATE(2677), + [sym_sigil] = STATE(2677), + [sym_list] = STATE(2677), + [sym_tuple] = STATE(2677), + [sym_bitstring] = STATE(2677), + [sym_map] = STATE(2677), + [sym_unary_operator] = STATE(2677), + [sym_binary_operator] = STATE(2677), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2677), + [sym_call] = STATE(2677), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2677), + [sym_anonymous_function] = STATE(2677), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2123), + [sym_integer] = ACTIONS(2123), + [sym_float] = ACTIONS(2123), + [sym_char] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [640] = { + [sym__expression] = STATE(3377), + [sym_block] = STATE(3377), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3377), + [sym_nil] = STATE(3377), + [sym__atom] = STATE(3377), + [sym_quoted_atom] = STATE(3377), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3377), + [sym_charlist] = STATE(3377), + [sym_sigil] = STATE(3377), + [sym_list] = STATE(3377), + [sym_tuple] = STATE(3377), + [sym_bitstring] = STATE(3377), + [sym_map] = STATE(3377), + [sym_unary_operator] = STATE(3377), + [sym_binary_operator] = STATE(3377), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3377), + [sym_call] = STATE(3377), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3377), + [sym_anonymous_function] = STATE(3377), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2125), + [sym_integer] = ACTIONS(2125), + [sym_float] = ACTIONS(2125), + [sym_char] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [641] = { + [sym__expression] = STATE(2675), + [sym_block] = STATE(2675), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2675), + [sym_nil] = STATE(2675), + [sym__atom] = STATE(2675), + [sym_quoted_atom] = STATE(2675), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2675), + [sym_charlist] = STATE(2675), + [sym_sigil] = STATE(2675), + [sym_list] = STATE(2675), + [sym_tuple] = STATE(2675), + [sym_bitstring] = STATE(2675), + [sym_map] = STATE(2675), + [sym_unary_operator] = STATE(2675), + [sym_binary_operator] = STATE(2675), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2675), + [sym_call] = STATE(2675), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2675), + [sym_anonymous_function] = STATE(2675), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2127), + [sym_integer] = ACTIONS(2127), + [sym_float] = ACTIONS(2127), + [sym_char] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [642] = { + [sym__expression] = STATE(2673), + [sym_block] = STATE(2673), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2673), + [sym_nil] = STATE(2673), + [sym__atom] = STATE(2673), + [sym_quoted_atom] = STATE(2673), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2673), + [sym_charlist] = STATE(2673), + [sym_sigil] = STATE(2673), + [sym_list] = STATE(2673), + [sym_tuple] = STATE(2673), + [sym_bitstring] = STATE(2673), + [sym_map] = STATE(2673), + [sym_unary_operator] = STATE(2673), + [sym_binary_operator] = STATE(2673), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2673), + [sym_call] = STATE(2673), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2673), + [sym_anonymous_function] = STATE(2673), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2129), + [sym_integer] = ACTIONS(2129), + [sym_float] = ACTIONS(2129), + [sym_char] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [643] = { + [sym__expression] = STATE(2670), + [sym_block] = STATE(2670), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2670), + [sym_nil] = STATE(2670), + [sym__atom] = STATE(2670), + [sym_quoted_atom] = STATE(2670), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2670), + [sym_charlist] = STATE(2670), + [sym_sigil] = STATE(2670), + [sym_list] = STATE(2670), + [sym_tuple] = STATE(2670), + [sym_bitstring] = STATE(2670), + [sym_map] = STATE(2670), + [sym_unary_operator] = STATE(2670), + [sym_binary_operator] = STATE(2670), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2670), + [sym_call] = STATE(2670), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2670), + [sym_anonymous_function] = STATE(2670), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2131), + [sym_integer] = ACTIONS(2131), + [sym_float] = ACTIONS(2131), + [sym_char] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [644] = { + [sym__expression] = STATE(3371), + [sym_block] = STATE(3371), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3371), + [sym_nil] = STATE(3371), + [sym__atom] = STATE(3371), + [sym_quoted_atom] = STATE(3371), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3371), + [sym_charlist] = STATE(3371), + [sym_sigil] = STATE(3371), + [sym_list] = STATE(3371), + [sym_tuple] = STATE(3371), + [sym_bitstring] = STATE(3371), + [sym_map] = STATE(3371), + [sym_unary_operator] = STATE(3371), + [sym_binary_operator] = STATE(3371), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3371), + [sym_call] = STATE(3371), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3371), + [sym_anonymous_function] = STATE(3371), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2133), + [sym_integer] = ACTIONS(2133), + [sym_float] = ACTIONS(2133), + [sym_char] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [645] = { + [sym__expression] = STATE(2535), + [sym_block] = STATE(2535), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2535), + [sym_nil] = STATE(2535), + [sym__atom] = STATE(2535), + [sym_quoted_atom] = STATE(2535), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2535), + [sym_charlist] = STATE(2535), + [sym_sigil] = STATE(2535), + [sym_list] = STATE(2535), + [sym_tuple] = STATE(2535), + [sym_bitstring] = STATE(2535), + [sym_map] = STATE(2535), + [sym_unary_operator] = STATE(2535), + [sym_binary_operator] = STATE(2535), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2535), + [sym_call] = STATE(2535), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2535), + [sym_anonymous_function] = STATE(2535), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2135), + [sym_integer] = ACTIONS(2135), + [sym_float] = ACTIONS(2135), + [sym_char] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [646] = { + [sym__expression] = STATE(2667), + [sym_block] = STATE(2667), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2667), + [sym_nil] = STATE(2667), + [sym__atom] = STATE(2667), + [sym_quoted_atom] = STATE(2667), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2667), + [sym_charlist] = STATE(2667), + [sym_sigil] = STATE(2667), + [sym_list] = STATE(2667), + [sym_tuple] = STATE(2667), + [sym_bitstring] = STATE(2667), + [sym_map] = STATE(2667), + [sym_unary_operator] = STATE(2667), + [sym_binary_operator] = STATE(2667), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2667), + [sym_call] = STATE(2667), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2667), + [sym_anonymous_function] = STATE(2667), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2137), + [sym_integer] = ACTIONS(2137), + [sym_float] = ACTIONS(2137), + [sym_char] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [647] = { + [sym__expression] = STATE(2666), + [sym_block] = STATE(2666), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2666), + [sym_nil] = STATE(2666), + [sym__atom] = STATE(2666), + [sym_quoted_atom] = STATE(2666), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2666), + [sym_charlist] = STATE(2666), + [sym_sigil] = STATE(2666), + [sym_list] = STATE(2666), + [sym_tuple] = STATE(2666), + [sym_bitstring] = STATE(2666), + [sym_map] = STATE(2666), + [sym_unary_operator] = STATE(2666), + [sym_binary_operator] = STATE(2666), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2666), + [sym_call] = STATE(2666), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2666), + [sym_anonymous_function] = STATE(2666), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2139), + [sym_integer] = ACTIONS(2139), + [sym_float] = ACTIONS(2139), + [sym_char] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [648] = { + [sym__expression] = STATE(2665), + [sym_block] = STATE(2665), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2665), + [sym_nil] = STATE(2665), + [sym__atom] = STATE(2665), + [sym_quoted_atom] = STATE(2665), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2665), + [sym_charlist] = STATE(2665), + [sym_sigil] = STATE(2665), + [sym_list] = STATE(2665), + [sym_tuple] = STATE(2665), + [sym_bitstring] = STATE(2665), + [sym_map] = STATE(2665), + [sym_unary_operator] = STATE(2665), + [sym_binary_operator] = STATE(2665), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2665), + [sym_call] = STATE(2665), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2665), + [sym_anonymous_function] = STATE(2665), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2141), + [sym_integer] = ACTIONS(2141), + [sym_float] = ACTIONS(2141), + [sym_char] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [649] = { + [sym__expression] = STATE(2662), + [sym_block] = STATE(2662), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2662), + [sym_nil] = STATE(2662), + [sym__atom] = STATE(2662), + [sym_quoted_atom] = STATE(2662), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2662), + [sym_charlist] = STATE(2662), + [sym_sigil] = STATE(2662), + [sym_list] = STATE(2662), + [sym_tuple] = STATE(2662), + [sym_bitstring] = STATE(2662), + [sym_map] = STATE(2662), + [sym_unary_operator] = STATE(2662), + [sym_binary_operator] = STATE(2662), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2662), + [sym_call] = STATE(2662), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2662), + [sym_anonymous_function] = STATE(2662), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2143), + [sym_integer] = ACTIONS(2143), + [sym_float] = ACTIONS(2143), + [sym_char] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [650] = { + [sym__expression] = STATE(2536), + [sym_block] = STATE(2536), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2536), + [sym_nil] = STATE(2536), + [sym__atom] = STATE(2536), + [sym_quoted_atom] = STATE(2536), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2536), + [sym_charlist] = STATE(2536), + [sym_sigil] = STATE(2536), + [sym_list] = STATE(2536), + [sym_tuple] = STATE(2536), + [sym_bitstring] = STATE(2536), + [sym_map] = STATE(2536), + [sym_unary_operator] = STATE(2536), + [sym_binary_operator] = STATE(2536), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2536), + [sym_call] = STATE(2536), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2536), + [sym_anonymous_function] = STATE(2536), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2145), + [sym_integer] = ACTIONS(2145), + [sym_float] = ACTIONS(2145), + [sym_char] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [651] = { + [sym__expression] = STATE(2537), + [sym_block] = STATE(2537), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2537), + [sym_nil] = STATE(2537), + [sym__atom] = STATE(2537), + [sym_quoted_atom] = STATE(2537), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2537), + [sym_charlist] = STATE(2537), + [sym_sigil] = STATE(2537), + [sym_list] = STATE(2537), + [sym_tuple] = STATE(2537), + [sym_bitstring] = STATE(2537), + [sym_map] = STATE(2537), + [sym_unary_operator] = STATE(2537), + [sym_binary_operator] = STATE(2537), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2537), + [sym_call] = STATE(2537), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2537), + [sym_anonymous_function] = STATE(2537), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2147), + [sym_integer] = ACTIONS(2147), + [sym_float] = ACTIONS(2147), + [sym_char] = ACTIONS(2147), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [652] = { + [sym__expression] = STATE(2538), + [sym_block] = STATE(2538), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2538), + [sym_nil] = STATE(2538), + [sym__atom] = STATE(2538), + [sym_quoted_atom] = STATE(2538), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2538), + [sym_charlist] = STATE(2538), + [sym_sigil] = STATE(2538), + [sym_list] = STATE(2538), + [sym_tuple] = STATE(2538), + [sym_bitstring] = STATE(2538), + [sym_map] = STATE(2538), + [sym_unary_operator] = STATE(2538), + [sym_binary_operator] = STATE(2538), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2538), + [sym_call] = STATE(2538), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2538), + [sym_anonymous_function] = STATE(2538), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2149), + [sym_integer] = ACTIONS(2149), + [sym_float] = ACTIONS(2149), + [sym_char] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [653] = { + [sym__expression] = STATE(2331), + [sym_block] = STATE(2331), + [sym__identifier] = STATE(43), + [sym_identifier] = STATE(43), + [sym_special_identifier] = STATE(43), + [sym_boolean] = STATE(2331), + [sym_nil] = STATE(2331), + [sym__atom] = STATE(2331), + [sym_quoted_atom] = STATE(2331), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2331), + [sym_charlist] = STATE(2331), + [sym_sigil] = STATE(2331), + [sym_list] = STATE(2331), + [sym_tuple] = STATE(2331), + [sym_bitstring] = STATE(2331), + [sym_map] = STATE(2331), + [sym_unary_operator] = STATE(2331), + [sym_binary_operator] = STATE(2331), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2331), + [sym_call] = STATE(2331), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2331), + [sym_anonymous_function] = STATE(2331), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(479), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2151), + [sym_integer] = ACTIONS(2151), + [sym_float] = ACTIONS(2151), + [sym_char] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(487), + [anon_sym_PLUS] = ACTIONS(492), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(492), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(492), + [anon_sym_not] = ACTIONS(492), + [anon_sym_AT] = ACTIONS(494), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(496), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [654] = { + [sym__expression] = STATE(2661), + [sym_block] = STATE(2661), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2661), + [sym_nil] = STATE(2661), + [sym__atom] = STATE(2661), + [sym_quoted_atom] = STATE(2661), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2661), + [sym_charlist] = STATE(2661), + [sym_sigil] = STATE(2661), + [sym_list] = STATE(2661), + [sym_tuple] = STATE(2661), + [sym_bitstring] = STATE(2661), + [sym_map] = STATE(2661), + [sym_unary_operator] = STATE(2661), + [sym_binary_operator] = STATE(2661), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2661), + [sym_call] = STATE(2661), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2661), + [sym_anonymous_function] = STATE(2661), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2153), + [sym_integer] = ACTIONS(2153), + [sym_float] = ACTIONS(2153), + [sym_char] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [655] = { + [sym__expression] = STATE(2660), + [sym_block] = STATE(2660), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2660), + [sym_nil] = STATE(2660), + [sym__atom] = STATE(2660), + [sym_quoted_atom] = STATE(2660), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2660), + [sym_charlist] = STATE(2660), + [sym_sigil] = STATE(2660), + [sym_list] = STATE(2660), + [sym_tuple] = STATE(2660), + [sym_bitstring] = STATE(2660), + [sym_map] = STATE(2660), + [sym_unary_operator] = STATE(2660), + [sym_binary_operator] = STATE(2660), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2660), + [sym_call] = STATE(2660), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2660), + [sym_anonymous_function] = STATE(2660), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2155), + [sym_integer] = ACTIONS(2155), + [sym_float] = ACTIONS(2155), + [sym_char] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [656] = { + [sym__expression] = STATE(2659), + [sym_block] = STATE(2659), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2659), + [sym_nil] = STATE(2659), + [sym__atom] = STATE(2659), + [sym_quoted_atom] = STATE(2659), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2659), + [sym_charlist] = STATE(2659), + [sym_sigil] = STATE(2659), + [sym_list] = STATE(2659), + [sym_tuple] = STATE(2659), + [sym_bitstring] = STATE(2659), + [sym_map] = STATE(2659), + [sym_unary_operator] = STATE(2659), + [sym_binary_operator] = STATE(2659), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2659), + [sym_call] = STATE(2659), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2659), + [sym_anonymous_function] = STATE(2659), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2157), + [sym_integer] = ACTIONS(2157), + [sym_float] = ACTIONS(2157), + [sym_char] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [657] = { + [sym__expression] = STATE(2658), + [sym_block] = STATE(2658), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2658), + [sym_nil] = STATE(2658), + [sym__atom] = STATE(2658), + [sym_quoted_atom] = STATE(2658), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2658), + [sym_charlist] = STATE(2658), + [sym_sigil] = STATE(2658), + [sym_list] = STATE(2658), + [sym_tuple] = STATE(2658), + [sym_bitstring] = STATE(2658), + [sym_map] = STATE(2658), + [sym_unary_operator] = STATE(2658), + [sym_binary_operator] = STATE(2658), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2658), + [sym_call] = STATE(2658), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2658), + [sym_anonymous_function] = STATE(2658), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2159), + [sym_integer] = ACTIONS(2159), + [sym_float] = ACTIONS(2159), + [sym_char] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [658] = { + [sym__expression] = STATE(2657), + [sym_block] = STATE(2657), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2657), + [sym_nil] = STATE(2657), + [sym__atom] = STATE(2657), + [sym_quoted_atom] = STATE(2657), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2657), + [sym_charlist] = STATE(2657), + [sym_sigil] = STATE(2657), + [sym_list] = STATE(2657), + [sym_tuple] = STATE(2657), + [sym_bitstring] = STATE(2657), + [sym_map] = STATE(2657), + [sym_unary_operator] = STATE(2657), + [sym_binary_operator] = STATE(2657), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2657), + [sym_call] = STATE(2657), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2657), + [sym_anonymous_function] = STATE(2657), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2161), + [sym_integer] = ACTIONS(2161), + [sym_float] = ACTIONS(2161), + [sym_char] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [659] = { + [sym__expression] = STATE(2246), + [sym_block] = STATE(2246), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(2246), + [sym_nil] = STATE(2246), + [sym__atom] = STATE(2246), + [sym_quoted_atom] = STATE(2246), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2246), + [sym_charlist] = STATE(2246), + [sym_sigil] = STATE(2246), + [sym_list] = STATE(2246), + [sym_tuple] = STATE(2246), + [sym_bitstring] = STATE(2246), + [sym_map] = STATE(2246), + [sym_unary_operator] = STATE(2246), + [sym_binary_operator] = STATE(2246), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2246), + [sym_call] = STATE(2246), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2246), + [sym_anonymous_function] = STATE(2246), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(946), + [sym_integer] = ACTIONS(946), + [sym_float] = ACTIONS(946), + [sym_char] = ACTIONS(946), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [660] = { + [sym__expression] = STATE(2656), + [sym_block] = STATE(2656), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2656), + [sym_nil] = STATE(2656), + [sym__atom] = STATE(2656), + [sym_quoted_atom] = STATE(2656), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2656), + [sym_charlist] = STATE(2656), + [sym_sigil] = STATE(2656), + [sym_list] = STATE(2656), + [sym_tuple] = STATE(2656), + [sym_bitstring] = STATE(2656), + [sym_map] = STATE(2656), + [sym_unary_operator] = STATE(2656), + [sym_binary_operator] = STATE(2656), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2656), + [sym_call] = STATE(2656), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2656), + [sym_anonymous_function] = STATE(2656), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2163), + [sym_integer] = ACTIONS(2163), + [sym_float] = ACTIONS(2163), + [sym_char] = ACTIONS(2163), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [661] = { + [sym__expression] = STATE(3373), + [sym_block] = STATE(3373), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3373), + [sym_nil] = STATE(3373), + [sym__atom] = STATE(3373), + [sym_quoted_atom] = STATE(3373), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3373), + [sym_charlist] = STATE(3373), + [sym_sigil] = STATE(3373), + [sym_list] = STATE(3373), + [sym_tuple] = STATE(3373), + [sym_bitstring] = STATE(3373), + [sym_map] = STATE(3373), + [sym_unary_operator] = STATE(3373), + [sym_binary_operator] = STATE(3373), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3373), + [sym_call] = STATE(3373), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3373), + [sym_anonymous_function] = STATE(3373), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2165), + [sym_integer] = ACTIONS(2165), + [sym_float] = ACTIONS(2165), + [sym_char] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [662] = { + [sym__expression] = STATE(1843), + [sym_block] = STATE(1843), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(1843), + [sym_nil] = STATE(1843), + [sym__atom] = STATE(1843), + [sym_quoted_atom] = STATE(1843), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1843), + [sym_charlist] = STATE(1843), + [sym_sigil] = STATE(1843), + [sym_list] = STATE(1843), + [sym_tuple] = STATE(1843), + [sym_bitstring] = STATE(1843), + [sym_map] = STATE(1843), + [sym_unary_operator] = STATE(1843), + [sym_binary_operator] = STATE(1843), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1843), + [sym_call] = STATE(1843), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1843), + [sym_anonymous_function] = STATE(1843), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2167), + [sym_integer] = ACTIONS(2167), + [sym_float] = ACTIONS(2167), + [sym_char] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [663] = { + [sym__expression] = STATE(3372), + [sym_block] = STATE(3372), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3372), + [sym_nil] = STATE(3372), + [sym__atom] = STATE(3372), + [sym_quoted_atom] = STATE(3372), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3372), + [sym_charlist] = STATE(3372), + [sym_sigil] = STATE(3372), + [sym_list] = STATE(3372), + [sym_tuple] = STATE(3372), + [sym_bitstring] = STATE(3372), + [sym_map] = STATE(3372), + [sym_unary_operator] = STATE(3372), + [sym_binary_operator] = STATE(3372), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3372), + [sym_call] = STATE(3372), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3372), + [sym_anonymous_function] = STATE(3372), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2169), + [sym_integer] = ACTIONS(2169), + [sym_float] = ACTIONS(2169), + [sym_char] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [664] = { + [sym__expression] = STATE(3384), + [sym_block] = STATE(3384), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3384), + [sym_nil] = STATE(3384), + [sym__atom] = STATE(3384), + [sym_quoted_atom] = STATE(3384), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3384), + [sym_charlist] = STATE(3384), + [sym_sigil] = STATE(3384), + [sym_list] = STATE(3384), + [sym_tuple] = STATE(3384), + [sym_bitstring] = STATE(3384), + [sym_map] = STATE(3384), + [sym_unary_operator] = STATE(3384), + [sym_binary_operator] = STATE(3384), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3384), + [sym_call] = STATE(3384), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3384), + [sym_anonymous_function] = STATE(3384), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2171), + [sym_integer] = ACTIONS(2171), + [sym_float] = ACTIONS(2171), + [sym_char] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [665] = { + [sym__expression] = STATE(2628), + [sym_block] = STATE(2628), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2628), + [sym_nil] = STATE(2628), + [sym__atom] = STATE(2628), + [sym_quoted_atom] = STATE(2628), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2628), + [sym_charlist] = STATE(2628), + [sym_sigil] = STATE(2628), + [sym_list] = STATE(2628), + [sym_tuple] = STATE(2628), + [sym_bitstring] = STATE(2628), + [sym_map] = STATE(2628), + [sym_unary_operator] = STATE(2628), + [sym_binary_operator] = STATE(2628), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2628), + [sym_call] = STATE(2628), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2628), + [sym_anonymous_function] = STATE(2628), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2173), + [sym_integer] = ACTIONS(2173), + [sym_float] = ACTIONS(2173), + [sym_char] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [666] = { + [sym__expression] = STATE(1355), + [sym_block] = STATE(1355), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(1355), + [sym_nil] = STATE(1355), + [sym__atom] = STATE(1355), + [sym_quoted_atom] = STATE(1355), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1355), + [sym_charlist] = STATE(1355), + [sym_sigil] = STATE(1355), + [sym_list] = STATE(1355), + [sym_tuple] = STATE(1355), + [sym_bitstring] = STATE(1355), + [sym_map] = STATE(1355), + [sym_unary_operator] = STATE(1355), + [sym_binary_operator] = STATE(1355), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1355), + [sym_call] = STATE(1355), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1355), + [sym_anonymous_function] = STATE(1355), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2039), + [sym_integer] = ACTIONS(2039), + [sym_float] = ACTIONS(2039), + [sym_char] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [667] = { + [sym__expression] = STATE(3188), + [sym_block] = STATE(3188), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3188), + [sym_nil] = STATE(3188), + [sym__atom] = STATE(3188), + [sym_quoted_atom] = STATE(3188), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3188), + [sym_charlist] = STATE(3188), + [sym_sigil] = STATE(3188), + [sym_list] = STATE(3188), + [sym_tuple] = STATE(3188), + [sym_bitstring] = STATE(3188), + [sym_map] = STATE(3188), + [sym_unary_operator] = STATE(3188), + [sym_binary_operator] = STATE(3188), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3188), + [sym_call] = STATE(3188), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3188), + [sym_anonymous_function] = STATE(3188), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2175), + [sym_integer] = ACTIONS(2175), + [sym_float] = ACTIONS(2175), + [sym_char] = ACTIONS(2175), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [668] = { + [sym__expression] = STATE(3189), + [sym_block] = STATE(3189), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3189), + [sym_nil] = STATE(3189), + [sym__atom] = STATE(3189), + [sym_quoted_atom] = STATE(3189), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3189), + [sym_charlist] = STATE(3189), + [sym_sigil] = STATE(3189), + [sym_list] = STATE(3189), + [sym_tuple] = STATE(3189), + [sym_bitstring] = STATE(3189), + [sym_map] = STATE(3189), + [sym_unary_operator] = STATE(3189), + [sym_binary_operator] = STATE(3189), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3189), + [sym_call] = STATE(3189), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3189), + [sym_anonymous_function] = STATE(3189), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2177), + [sym_integer] = ACTIONS(2177), + [sym_float] = ACTIONS(2177), + [sym_char] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [669] = { + [sym__expression] = STATE(3207), + [sym_block] = STATE(3207), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3207), + [sym_nil] = STATE(3207), + [sym__atom] = STATE(3207), + [sym_quoted_atom] = STATE(3207), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3207), + [sym_charlist] = STATE(3207), + [sym_sigil] = STATE(3207), + [sym_list] = STATE(3207), + [sym_tuple] = STATE(3207), + [sym_bitstring] = STATE(3207), + [sym_map] = STATE(3207), + [sym_unary_operator] = STATE(3207), + [sym_binary_operator] = STATE(3207), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3207), + [sym_call] = STATE(3207), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3207), + [sym_anonymous_function] = STATE(3207), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2179), + [sym_integer] = ACTIONS(2179), + [sym_float] = ACTIONS(2179), + [sym_char] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2179), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [670] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym__atom] = STATE(3208), + [sym_quoted_atom] = STATE(3208), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_list] = STATE(3208), + [sym_tuple] = STATE(3208), + [sym_bitstring] = STATE(3208), + [sym_map] = STATE(3208), + [sym_unary_operator] = STATE(3208), + [sym_binary_operator] = STATE(3208), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3208), + [sym_anonymous_function] = STATE(3208), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2181), + [sym_integer] = ACTIONS(2181), + [sym_float] = ACTIONS(2181), + [sym_char] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [671] = { + [sym__expression] = STATE(3209), + [sym_block] = STATE(3209), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3209), + [sym_nil] = STATE(3209), + [sym__atom] = STATE(3209), + [sym_quoted_atom] = STATE(3209), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3209), + [sym_charlist] = STATE(3209), + [sym_sigil] = STATE(3209), + [sym_list] = STATE(3209), + [sym_tuple] = STATE(3209), + [sym_bitstring] = STATE(3209), + [sym_map] = STATE(3209), + [sym_unary_operator] = STATE(3209), + [sym_binary_operator] = STATE(3209), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3209), + [sym_call] = STATE(3209), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3209), + [sym_anonymous_function] = STATE(3209), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2183), + [sym_integer] = ACTIONS(2183), + [sym_float] = ACTIONS(2183), + [sym_char] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [672] = { + [sym__expression] = STATE(3210), + [sym_block] = STATE(3210), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3210), + [sym_nil] = STATE(3210), + [sym__atom] = STATE(3210), + [sym_quoted_atom] = STATE(3210), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3210), + [sym_charlist] = STATE(3210), + [sym_sigil] = STATE(3210), + [sym_list] = STATE(3210), + [sym_tuple] = STATE(3210), + [sym_bitstring] = STATE(3210), + [sym_map] = STATE(3210), + [sym_unary_operator] = STATE(3210), + [sym_binary_operator] = STATE(3210), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3210), + [sym_call] = STATE(3210), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3210), + [sym_anonymous_function] = STATE(3210), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2185), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2185), + [sym_char] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [673] = { + [sym__expression] = STATE(3211), + [sym_block] = STATE(3211), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3211), + [sym_nil] = STATE(3211), + [sym__atom] = STATE(3211), + [sym_quoted_atom] = STATE(3211), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3211), + [sym_charlist] = STATE(3211), + [sym_sigil] = STATE(3211), + [sym_list] = STATE(3211), + [sym_tuple] = STATE(3211), + [sym_bitstring] = STATE(3211), + [sym_map] = STATE(3211), + [sym_unary_operator] = STATE(3211), + [sym_binary_operator] = STATE(3211), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3211), + [sym_call] = STATE(3211), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3211), + [sym_anonymous_function] = STATE(3211), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2187), + [sym_integer] = ACTIONS(2187), + [sym_float] = ACTIONS(2187), + [sym_char] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [674] = { + [sym__expression] = STATE(2346), + [sym_block] = STATE(2346), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2346), + [sym_nil] = STATE(2346), + [sym__atom] = STATE(2346), + [sym_quoted_atom] = STATE(2346), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2346), + [sym_charlist] = STATE(2346), + [sym_sigil] = STATE(2346), + [sym_list] = STATE(2346), + [sym_tuple] = STATE(2346), + [sym_bitstring] = STATE(2346), + [sym_map] = STATE(2346), + [sym_unary_operator] = STATE(2346), + [sym_binary_operator] = STATE(2346), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2346), + [sym_call] = STATE(2346), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2346), + [sym_anonymous_function] = STATE(2346), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1935), + [sym_integer] = ACTIONS(1935), + [sym_float] = ACTIONS(1935), + [sym_char] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [675] = { + [sym__expression] = STATE(2345), + [sym_block] = STATE(2345), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2345), + [sym_nil] = STATE(2345), + [sym__atom] = STATE(2345), + [sym_quoted_atom] = STATE(2345), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2345), + [sym_charlist] = STATE(2345), + [sym_sigil] = STATE(2345), + [sym_list] = STATE(2345), + [sym_tuple] = STATE(2345), + [sym_bitstring] = STATE(2345), + [sym_map] = STATE(2345), + [sym_unary_operator] = STATE(2345), + [sym_binary_operator] = STATE(2345), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2345), + [sym_call] = STATE(2345), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2345), + [sym_anonymous_function] = STATE(2345), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(1795), + [sym_integer] = ACTIONS(1795), + [sym_float] = ACTIONS(1795), + [sym_char] = ACTIONS(1795), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [676] = { + [sym__expression] = STATE(3213), + [sym_block] = STATE(3213), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3213), + [sym_nil] = STATE(3213), + [sym__atom] = STATE(3213), + [sym_quoted_atom] = STATE(3213), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3213), + [sym_charlist] = STATE(3213), + [sym_sigil] = STATE(3213), + [sym_list] = STATE(3213), + [sym_tuple] = STATE(3213), + [sym_bitstring] = STATE(3213), + [sym_map] = STATE(3213), + [sym_unary_operator] = STATE(3213), + [sym_binary_operator] = STATE(3213), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3213), + [sym_call] = STATE(3213), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3213), + [sym_anonymous_function] = STATE(3213), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2189), + [sym_integer] = ACTIONS(2189), + [sym_float] = ACTIONS(2189), + [sym_char] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [677] = { + [sym__expression] = STATE(3214), + [sym_block] = STATE(3214), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3214), + [sym_nil] = STATE(3214), + [sym__atom] = STATE(3214), + [sym_quoted_atom] = STATE(3214), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3214), + [sym_charlist] = STATE(3214), + [sym_sigil] = STATE(3214), + [sym_list] = STATE(3214), + [sym_tuple] = STATE(3214), + [sym_bitstring] = STATE(3214), + [sym_map] = STATE(3214), + [sym_unary_operator] = STATE(3214), + [sym_binary_operator] = STATE(3214), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3214), + [sym_call] = STATE(3214), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3214), + [sym_anonymous_function] = STATE(3214), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2191), + [sym_integer] = ACTIONS(2191), + [sym_float] = ACTIONS(2191), + [sym_char] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [678] = { + [sym__expression] = STATE(3215), + [sym_block] = STATE(3215), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3215), + [sym_nil] = STATE(3215), + [sym__atom] = STATE(3215), + [sym_quoted_atom] = STATE(3215), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3215), + [sym_charlist] = STATE(3215), + [sym_sigil] = STATE(3215), + [sym_list] = STATE(3215), + [sym_tuple] = STATE(3215), + [sym_bitstring] = STATE(3215), + [sym_map] = STATE(3215), + [sym_unary_operator] = STATE(3215), + [sym_binary_operator] = STATE(3215), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3215), + [sym_call] = STATE(3215), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3215), + [sym_anonymous_function] = STATE(3215), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2193), + [sym_integer] = ACTIONS(2193), + [sym_float] = ACTIONS(2193), + [sym_char] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [679] = { + [sym__expression] = STATE(3216), + [sym_block] = STATE(3216), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3216), + [sym_nil] = STATE(3216), + [sym__atom] = STATE(3216), + [sym_quoted_atom] = STATE(3216), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3216), + [sym_charlist] = STATE(3216), + [sym_sigil] = STATE(3216), + [sym_list] = STATE(3216), + [sym_tuple] = STATE(3216), + [sym_bitstring] = STATE(3216), + [sym_map] = STATE(3216), + [sym_unary_operator] = STATE(3216), + [sym_binary_operator] = STATE(3216), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3216), + [sym_call] = STATE(3216), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3216), + [sym_anonymous_function] = STATE(3216), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2195), + [sym_integer] = ACTIONS(2195), + [sym_float] = ACTIONS(2195), + [sym_char] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2195), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [680] = { + [sym__expression] = STATE(2077), + [sym_block] = STATE(2077), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2077), + [sym_nil] = STATE(2077), + [sym__atom] = STATE(2077), + [sym_quoted_atom] = STATE(2077), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2077), + [sym_charlist] = STATE(2077), + [sym_sigil] = STATE(2077), + [sym_list] = STATE(2077), + [sym_tuple] = STATE(2077), + [sym_bitstring] = STATE(2077), + [sym_map] = STATE(2077), + [sym_unary_operator] = STATE(2077), + [sym_binary_operator] = STATE(2077), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2077), + [sym_call] = STATE(2077), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2077), + [sym_anonymous_function] = STATE(2077), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2197), + [sym_integer] = ACTIONS(2197), + [sym_float] = ACTIONS(2197), + [sym_char] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [681] = { + [sym__expression] = STATE(3219), + [sym_block] = STATE(3219), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3219), + [sym_nil] = STATE(3219), + [sym__atom] = STATE(3219), + [sym_quoted_atom] = STATE(3219), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3219), + [sym_charlist] = STATE(3219), + [sym_sigil] = STATE(3219), + [sym_list] = STATE(3219), + [sym_tuple] = STATE(3219), + [sym_bitstring] = STATE(3219), + [sym_map] = STATE(3219), + [sym_unary_operator] = STATE(3219), + [sym_binary_operator] = STATE(3219), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3219), + [sym_call] = STATE(3219), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3219), + [sym_anonymous_function] = STATE(3219), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2199), + [sym_integer] = ACTIONS(2199), + [sym_float] = ACTIONS(2199), + [sym_char] = ACTIONS(2199), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [682] = { + [sym__expression] = STATE(3220), + [sym_block] = STATE(3220), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3220), + [sym_nil] = STATE(3220), + [sym__atom] = STATE(3220), + [sym_quoted_atom] = STATE(3220), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3220), + [sym_charlist] = STATE(3220), + [sym_sigil] = STATE(3220), + [sym_list] = STATE(3220), + [sym_tuple] = STATE(3220), + [sym_bitstring] = STATE(3220), + [sym_map] = STATE(3220), + [sym_unary_operator] = STATE(3220), + [sym_binary_operator] = STATE(3220), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3220), + [sym_call] = STATE(3220), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3220), + [sym_anonymous_function] = STATE(3220), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2201), + [sym_integer] = ACTIONS(2201), + [sym_float] = ACTIONS(2201), + [sym_char] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [683] = { + [sym__expression] = STATE(3221), + [sym_block] = STATE(3221), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3221), + [sym_nil] = STATE(3221), + [sym__atom] = STATE(3221), + [sym_quoted_atom] = STATE(3221), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3221), + [sym_charlist] = STATE(3221), + [sym_sigil] = STATE(3221), + [sym_list] = STATE(3221), + [sym_tuple] = STATE(3221), + [sym_bitstring] = STATE(3221), + [sym_map] = STATE(3221), + [sym_unary_operator] = STATE(3221), + [sym_binary_operator] = STATE(3221), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3221), + [sym_call] = STATE(3221), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3221), + [sym_anonymous_function] = STATE(3221), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2203), + [sym_integer] = ACTIONS(2203), + [sym_float] = ACTIONS(2203), + [sym_char] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2203), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [684] = { + [sym__expression] = STATE(3259), + [sym_block] = STATE(3259), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3259), + [sym_nil] = STATE(3259), + [sym__atom] = STATE(3259), + [sym_quoted_atom] = STATE(3259), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3259), + [sym_charlist] = STATE(3259), + [sym_sigil] = STATE(3259), + [sym_list] = STATE(3259), + [sym_tuple] = STATE(3259), + [sym_bitstring] = STATE(3259), + [sym_map] = STATE(3259), + [sym_unary_operator] = STATE(3259), + [sym_binary_operator] = STATE(3259), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3259), + [sym_call] = STATE(3259), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3259), + [sym_anonymous_function] = STATE(3259), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2205), + [sym_integer] = ACTIONS(2205), + [sym_float] = ACTIONS(2205), + [sym_char] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [685] = { + [sym__expression] = STATE(2308), + [sym_block] = STATE(2308), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2308), + [sym_nil] = STATE(2308), + [sym__atom] = STATE(2308), + [sym_quoted_atom] = STATE(2308), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2308), + [sym_charlist] = STATE(2308), + [sym_sigil] = STATE(2308), + [sym_list] = STATE(2308), + [sym_tuple] = STATE(2308), + [sym_bitstring] = STATE(2308), + [sym_map] = STATE(2308), + [sym_unary_operator] = STATE(2308), + [sym_binary_operator] = STATE(2308), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2308), + [sym_call] = STATE(2308), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2308), + [sym_anonymous_function] = STATE(2308), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2013), + [sym_integer] = ACTIONS(2013), + [sym_float] = ACTIONS(2013), + [sym_char] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [686] = { + [sym__expression] = STATE(2307), + [sym_block] = STATE(2307), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2307), + [sym_nil] = STATE(2307), + [sym__atom] = STATE(2307), + [sym_quoted_atom] = STATE(2307), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2307), + [sym_charlist] = STATE(2307), + [sym_sigil] = STATE(2307), + [sym_list] = STATE(2307), + [sym_tuple] = STATE(2307), + [sym_bitstring] = STATE(2307), + [sym_map] = STATE(2307), + [sym_unary_operator] = STATE(2307), + [sym_binary_operator] = STATE(2307), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2307), + [sym_call] = STATE(2307), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2307), + [sym_anonymous_function] = STATE(2307), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2015), + [sym_integer] = ACTIONS(2015), + [sym_float] = ACTIONS(2015), + [sym_char] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [687] = { + [sym__expression] = STATE(3224), + [sym_block] = STATE(3224), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3224), + [sym_nil] = STATE(3224), + [sym__atom] = STATE(3224), + [sym_quoted_atom] = STATE(3224), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3224), + [sym_charlist] = STATE(3224), + [sym_sigil] = STATE(3224), + [sym_list] = STATE(3224), + [sym_tuple] = STATE(3224), + [sym_bitstring] = STATE(3224), + [sym_map] = STATE(3224), + [sym_unary_operator] = STATE(3224), + [sym_binary_operator] = STATE(3224), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3224), + [sym_call] = STATE(3224), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3224), + [sym_anonymous_function] = STATE(3224), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2207), + [sym_integer] = ACTIONS(2207), + [sym_float] = ACTIONS(2207), + [sym_char] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [688] = { + [sym__expression] = STATE(3319), + [sym_block] = STATE(3319), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3319), + [sym_nil] = STATE(3319), + [sym__atom] = STATE(3319), + [sym_quoted_atom] = STATE(3319), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3319), + [sym_charlist] = STATE(3319), + [sym_sigil] = STATE(3319), + [sym_list] = STATE(3319), + [sym_tuple] = STATE(3319), + [sym_bitstring] = STATE(3319), + [sym_map] = STATE(3319), + [sym_unary_operator] = STATE(3319), + [sym_binary_operator] = STATE(3319), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3319), + [sym_call] = STATE(3319), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3319), + [sym_anonymous_function] = STATE(3319), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(1583), + [sym_integer] = ACTIONS(1583), + [sym_float] = ACTIONS(1583), + [sym_char] = ACTIONS(1583), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(1583), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [689] = { + [sym__expression] = STATE(2933), + [sym_block] = STATE(2933), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2933), + [sym_nil] = STATE(2933), + [sym__atom] = STATE(2933), + [sym_quoted_atom] = STATE(2933), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2933), + [sym_charlist] = STATE(2933), + [sym_sigil] = STATE(2933), + [sym_list] = STATE(2933), + [sym_tuple] = STATE(2933), + [sym_bitstring] = STATE(2933), + [sym_map] = STATE(2933), + [sym_unary_operator] = STATE(2933), + [sym_binary_operator] = STATE(2933), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2933), + [sym_call] = STATE(2933), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2933), + [sym_anonymous_function] = STATE(2933), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1339), + [sym_integer] = ACTIONS(1339), + [sym_float] = ACTIONS(1339), + [sym_char] = ACTIONS(1339), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [690] = { + [sym__expression] = STATE(3186), + [sym_block] = STATE(3186), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3186), + [sym_nil] = STATE(3186), + [sym__atom] = STATE(3186), + [sym_quoted_atom] = STATE(3186), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3186), + [sym_charlist] = STATE(3186), + [sym_sigil] = STATE(3186), + [sym_list] = STATE(3186), + [sym_tuple] = STATE(3186), + [sym_bitstring] = STATE(3186), + [sym_map] = STATE(3186), + [sym_unary_operator] = STATE(3186), + [sym_binary_operator] = STATE(3186), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3186), + [sym_call] = STATE(3186), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3186), + [sym_anonymous_function] = STATE(3186), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2209), + [sym_integer] = ACTIONS(2209), + [sym_float] = ACTIONS(2209), + [sym_char] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [691] = { + [sym__expression] = STATE(3134), + [sym_block] = STATE(3134), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3134), + [sym_nil] = STATE(3134), + [sym__atom] = STATE(3134), + [sym_quoted_atom] = STATE(3134), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3134), + [sym_charlist] = STATE(3134), + [sym_sigil] = STATE(3134), + [sym_list] = STATE(3134), + [sym_tuple] = STATE(3134), + [sym_bitstring] = STATE(3134), + [sym_map] = STATE(3134), + [sym_unary_operator] = STATE(3134), + [sym_binary_operator] = STATE(3134), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3134), + [sym_call] = STATE(3134), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3134), + [sym_anonymous_function] = STATE(3134), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2211), + [sym_integer] = ACTIONS(2211), + [sym_float] = ACTIONS(2211), + [sym_char] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [692] = { + [sym__expression] = STATE(2078), + [sym_block] = STATE(2078), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2078), + [sym_nil] = STATE(2078), + [sym__atom] = STATE(2078), + [sym_quoted_atom] = STATE(2078), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2078), + [sym_charlist] = STATE(2078), + [sym_sigil] = STATE(2078), + [sym_list] = STATE(2078), + [sym_tuple] = STATE(2078), + [sym_bitstring] = STATE(2078), + [sym_map] = STATE(2078), + [sym_unary_operator] = STATE(2078), + [sym_binary_operator] = STATE(2078), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2078), + [sym_call] = STATE(2078), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2078), + [sym_anonymous_function] = STATE(2078), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2213), + [sym_integer] = ACTIONS(2213), + [sym_float] = ACTIONS(2213), + [sym_char] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [693] = { + [sym__expression] = STATE(3164), + [sym_block] = STATE(3164), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3164), + [sym_nil] = STATE(3164), + [sym__atom] = STATE(3164), + [sym_quoted_atom] = STATE(3164), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3164), + [sym_charlist] = STATE(3164), + [sym_sigil] = STATE(3164), + [sym_list] = STATE(3164), + [sym_tuple] = STATE(3164), + [sym_bitstring] = STATE(3164), + [sym_map] = STATE(3164), + [sym_unary_operator] = STATE(3164), + [sym_binary_operator] = STATE(3164), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3164), + [sym_call] = STATE(3164), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3164), + [sym_anonymous_function] = STATE(3164), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2215), + [sym_integer] = ACTIONS(2215), + [sym_float] = ACTIONS(2215), + [sym_char] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [694] = { + [sym__expression] = STATE(3156), + [sym_block] = STATE(3156), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3156), + [sym_nil] = STATE(3156), + [sym__atom] = STATE(3156), + [sym_quoted_atom] = STATE(3156), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3156), + [sym_charlist] = STATE(3156), + [sym_sigil] = STATE(3156), + [sym_list] = STATE(3156), + [sym_tuple] = STATE(3156), + [sym_bitstring] = STATE(3156), + [sym_map] = STATE(3156), + [sym_unary_operator] = STATE(3156), + [sym_binary_operator] = STATE(3156), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3156), + [sym_call] = STATE(3156), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3156), + [sym_anonymous_function] = STATE(3156), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2217), + [sym_integer] = ACTIONS(2217), + [sym_float] = ACTIONS(2217), + [sym_char] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [695] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2629), + [sym_charlist] = STATE(2629), + [sym_sigil] = STATE(2629), + [sym_list] = STATE(2629), + [sym_tuple] = STATE(2629), + [sym_bitstring] = STATE(2629), + [sym_map] = STATE(2629), + [sym_unary_operator] = STATE(2629), + [sym_binary_operator] = STATE(2629), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2219), + [sym_integer] = ACTIONS(2219), + [sym_float] = ACTIONS(2219), + [sym_char] = ACTIONS(2219), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [696] = { + [sym__expression] = STATE(1370), + [sym_block] = STATE(1370), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(1370), + [sym_nil] = STATE(1370), + [sym__atom] = STATE(1370), + [sym_quoted_atom] = STATE(1370), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1370), + [sym_charlist] = STATE(1370), + [sym_sigil] = STATE(1370), + [sym_list] = STATE(1370), + [sym_tuple] = STATE(1370), + [sym_bitstring] = STATE(1370), + [sym_map] = STATE(1370), + [sym_unary_operator] = STATE(1370), + [sym_binary_operator] = STATE(1370), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1370), + [sym_call] = STATE(1370), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1370), + [sym_anonymous_function] = STATE(1370), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2055), + [sym_integer] = ACTIONS(2055), + [sym_float] = ACTIONS(2055), + [sym_char] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [697] = { + [sym__expression] = STATE(2607), + [sym_block] = STATE(2607), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2607), + [sym_nil] = STATE(2607), + [sym__atom] = STATE(2607), + [sym_quoted_atom] = STATE(2607), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2607), + [sym_charlist] = STATE(2607), + [sym_sigil] = STATE(2607), + [sym_list] = STATE(2607), + [sym_tuple] = STATE(2607), + [sym_bitstring] = STATE(2607), + [sym_map] = STATE(2607), + [sym_unary_operator] = STATE(2607), + [sym_binary_operator] = STATE(2607), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2607), + [sym_call] = STATE(2607), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2607), + [sym_anonymous_function] = STATE(2607), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2221), + [sym_integer] = ACTIONS(2221), + [sym_float] = ACTIONS(2221), + [sym_char] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [698] = { + [sym__expression] = STATE(2608), + [sym_block] = STATE(2608), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2608), + [sym_nil] = STATE(2608), + [sym__atom] = STATE(2608), + [sym_quoted_atom] = STATE(2608), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2608), + [sym_charlist] = STATE(2608), + [sym_sigil] = STATE(2608), + [sym_list] = STATE(2608), + [sym_tuple] = STATE(2608), + [sym_bitstring] = STATE(2608), + [sym_map] = STATE(2608), + [sym_unary_operator] = STATE(2608), + [sym_binary_operator] = STATE(2608), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2608), + [sym_call] = STATE(2608), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2608), + [sym_anonymous_function] = STATE(2608), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2223), + [sym_integer] = ACTIONS(2223), + [sym_float] = ACTIONS(2223), + [sym_char] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [699] = { + [sym__expression] = STATE(3260), + [sym_block] = STATE(3260), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3260), + [sym_nil] = STATE(3260), + [sym__atom] = STATE(3260), + [sym_quoted_atom] = STATE(3260), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3260), + [sym_charlist] = STATE(3260), + [sym_sigil] = STATE(3260), + [sym_list] = STATE(3260), + [sym_tuple] = STATE(3260), + [sym_bitstring] = STATE(3260), + [sym_map] = STATE(3260), + [sym_unary_operator] = STATE(3260), + [sym_binary_operator] = STATE(3260), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3260), + [sym_call] = STATE(3260), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3260), + [sym_anonymous_function] = STATE(3260), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2225), + [sym_integer] = ACTIONS(2225), + [sym_float] = ACTIONS(2225), + [sym_char] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [700] = { + [sym__expression] = STATE(2824), + [sym_block] = STATE(2824), + [sym__identifier] = STATE(55), + [sym_identifier] = STATE(55), + [sym_special_identifier] = STATE(55), + [sym_boolean] = STATE(2824), + [sym_nil] = STATE(2824), + [sym__atom] = STATE(2824), + [sym_quoted_atom] = STATE(2824), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(2824), + [sym_charlist] = STATE(2824), + [sym_sigil] = STATE(2824), + [sym_list] = STATE(2824), + [sym_tuple] = STATE(2824), + [sym_bitstring] = STATE(2824), + [sym_map] = STATE(2824), + [sym_unary_operator] = STATE(2824), + [sym_binary_operator] = STATE(2824), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(2824), + [sym_call] = STATE(2824), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(52), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(2824), + [sym_anonymous_function] = STATE(2824), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(706), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2227), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2227), + [sym_char] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(712), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(716), + [anon_sym_DASH] = ACTIONS(716), + [anon_sym_BANG] = ACTIONS(716), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(716), + [anon_sym_not] = ACTIONS(716), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(722), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [701] = { + [sym__expression] = STATE(2610), + [sym_block] = STATE(2610), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2610), + [sym_nil] = STATE(2610), + [sym__atom] = STATE(2610), + [sym_quoted_atom] = STATE(2610), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2610), + [sym_charlist] = STATE(2610), + [sym_sigil] = STATE(2610), + [sym_list] = STATE(2610), + [sym_tuple] = STATE(2610), + [sym_bitstring] = STATE(2610), + [sym_map] = STATE(2610), + [sym_unary_operator] = STATE(2610), + [sym_binary_operator] = STATE(2610), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2610), + [sym_call] = STATE(2610), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2610), + [sym_anonymous_function] = STATE(2610), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2229), + [sym_integer] = ACTIONS(2229), + [sym_float] = ACTIONS(2229), + [sym_char] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [702] = { + [sym__expression] = STATE(2611), + [sym_block] = STATE(2611), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2611), + [sym_nil] = STATE(2611), + [sym__atom] = STATE(2611), + [sym_quoted_atom] = STATE(2611), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2611), + [sym_charlist] = STATE(2611), + [sym_sigil] = STATE(2611), + [sym_list] = STATE(2611), + [sym_tuple] = STATE(2611), + [sym_bitstring] = STATE(2611), + [sym_map] = STATE(2611), + [sym_unary_operator] = STATE(2611), + [sym_binary_operator] = STATE(2611), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2611), + [sym_call] = STATE(2611), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2611), + [sym_anonymous_function] = STATE(2611), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2231), + [sym_integer] = ACTIONS(2231), + [sym_float] = ACTIONS(2231), + [sym_char] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [703] = { + [sym__expression] = STATE(2612), + [sym_block] = STATE(2612), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2612), + [sym_nil] = STATE(2612), + [sym__atom] = STATE(2612), + [sym_quoted_atom] = STATE(2612), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2612), + [sym_charlist] = STATE(2612), + [sym_sigil] = STATE(2612), + [sym_list] = STATE(2612), + [sym_tuple] = STATE(2612), + [sym_bitstring] = STATE(2612), + [sym_map] = STATE(2612), + [sym_unary_operator] = STATE(2612), + [sym_binary_operator] = STATE(2612), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2612), + [sym_call] = STATE(2612), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2612), + [sym_anonymous_function] = STATE(2612), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2233), + [sym_integer] = ACTIONS(2233), + [sym_float] = ACTIONS(2233), + [sym_char] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [704] = { + [sym__expression] = STATE(3266), + [sym_block] = STATE(3266), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3266), + [sym_nil] = STATE(3266), + [sym__atom] = STATE(3266), + [sym_quoted_atom] = STATE(3266), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3266), + [sym_charlist] = STATE(3266), + [sym_sigil] = STATE(3266), + [sym_list] = STATE(3266), + [sym_tuple] = STATE(3266), + [sym_bitstring] = STATE(3266), + [sym_map] = STATE(3266), + [sym_unary_operator] = STATE(3266), + [sym_binary_operator] = STATE(3266), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3266), + [sym_call] = STATE(3266), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3266), + [sym_anonymous_function] = STATE(3266), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2235), + [sym_integer] = ACTIONS(2235), + [sym_float] = ACTIONS(2235), + [sym_char] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [705] = { + [sym__expression] = STATE(2614), + [sym_block] = STATE(2614), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2614), + [sym_nil] = STATE(2614), + [sym__atom] = STATE(2614), + [sym_quoted_atom] = STATE(2614), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2614), + [sym_charlist] = STATE(2614), + [sym_sigil] = STATE(2614), + [sym_list] = STATE(2614), + [sym_tuple] = STATE(2614), + [sym_bitstring] = STATE(2614), + [sym_map] = STATE(2614), + [sym_unary_operator] = STATE(2614), + [sym_binary_operator] = STATE(2614), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2614), + [sym_call] = STATE(2614), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2614), + [sym_anonymous_function] = STATE(2614), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2237), + [sym_integer] = ACTIONS(2237), + [sym_float] = ACTIONS(2237), + [sym_char] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [706] = { + [sym__expression] = STATE(2761), + [sym_block] = STATE(2761), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2761), + [sym_nil] = STATE(2761), + [sym__atom] = STATE(2761), + [sym_quoted_atom] = STATE(2761), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2761), + [sym_charlist] = STATE(2761), + [sym_sigil] = STATE(2761), + [sym_list] = STATE(2761), + [sym_tuple] = STATE(2761), + [sym_bitstring] = STATE(2761), + [sym_map] = STATE(2761), + [sym_unary_operator] = STATE(2761), + [sym_binary_operator] = STATE(2761), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2761), + [sym_call] = STATE(2761), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2761), + [sym_anonymous_function] = STATE(2761), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2239), + [sym_integer] = ACTIONS(2239), + [sym_float] = ACTIONS(2239), + [sym_char] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [707] = { + [sym__expression] = STATE(2760), + [sym_block] = STATE(2760), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2760), + [sym_nil] = STATE(2760), + [sym__atom] = STATE(2760), + [sym_quoted_atom] = STATE(2760), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2760), + [sym_charlist] = STATE(2760), + [sym_sigil] = STATE(2760), + [sym_list] = STATE(2760), + [sym_tuple] = STATE(2760), + [sym_bitstring] = STATE(2760), + [sym_map] = STATE(2760), + [sym_unary_operator] = STATE(2760), + [sym_binary_operator] = STATE(2760), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2760), + [sym_call] = STATE(2760), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2760), + [sym_anonymous_function] = STATE(2760), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2241), + [sym_integer] = ACTIONS(2241), + [sym_float] = ACTIONS(2241), + [sym_char] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [708] = { + [sym__expression] = STATE(3200), + [sym_block] = STATE(3200), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3200), + [sym_nil] = STATE(3200), + [sym__atom] = STATE(3200), + [sym_quoted_atom] = STATE(3200), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3200), + [sym_charlist] = STATE(3200), + [sym_sigil] = STATE(3200), + [sym_list] = STATE(3200), + [sym_tuple] = STATE(3200), + [sym_bitstring] = STATE(3200), + [sym_map] = STATE(3200), + [sym_unary_operator] = STATE(3200), + [sym_binary_operator] = STATE(3200), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3200), + [sym_call] = STATE(3200), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3200), + [sym_anonymous_function] = STATE(3200), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2243), + [sym_integer] = ACTIONS(2243), + [sym_float] = ACTIONS(2243), + [sym_char] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [709] = { + [sym__expression] = STATE(2757), + [sym_block] = STATE(2757), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2757), + [sym_nil] = STATE(2757), + [sym__atom] = STATE(2757), + [sym_quoted_atom] = STATE(2757), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2757), + [sym_charlist] = STATE(2757), + [sym_sigil] = STATE(2757), + [sym_list] = STATE(2757), + [sym_tuple] = STATE(2757), + [sym_bitstring] = STATE(2757), + [sym_map] = STATE(2757), + [sym_unary_operator] = STATE(2757), + [sym_binary_operator] = STATE(2757), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2757), + [sym_call] = STATE(2757), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2757), + [sym_anonymous_function] = STATE(2757), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2245), + [sym_integer] = ACTIONS(2245), + [sym_float] = ACTIONS(2245), + [sym_char] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [710] = { + [sym__expression] = STATE(2756), + [sym_block] = STATE(2756), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2756), + [sym_nil] = STATE(2756), + [sym__atom] = STATE(2756), + [sym_quoted_atom] = STATE(2756), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2756), + [sym_charlist] = STATE(2756), + [sym_sigil] = STATE(2756), + [sym_list] = STATE(2756), + [sym_tuple] = STATE(2756), + [sym_bitstring] = STATE(2756), + [sym_map] = STATE(2756), + [sym_unary_operator] = STATE(2756), + [sym_binary_operator] = STATE(2756), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2756), + [sym_call] = STATE(2756), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2756), + [sym_anonymous_function] = STATE(2756), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2247), + [sym_integer] = ACTIONS(2247), + [sym_float] = ACTIONS(2247), + [sym_char] = ACTIONS(2247), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [711] = { + [sym__expression] = STATE(2755), + [sym_block] = STATE(2755), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2755), + [sym_nil] = STATE(2755), + [sym__atom] = STATE(2755), + [sym_quoted_atom] = STATE(2755), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2755), + [sym_charlist] = STATE(2755), + [sym_sigil] = STATE(2755), + [sym_list] = STATE(2755), + [sym_tuple] = STATE(2755), + [sym_bitstring] = STATE(2755), + [sym_map] = STATE(2755), + [sym_unary_operator] = STATE(2755), + [sym_binary_operator] = STATE(2755), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2755), + [sym_call] = STATE(2755), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2755), + [sym_anonymous_function] = STATE(2755), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2249), + [sym_integer] = ACTIONS(2249), + [sym_float] = ACTIONS(2249), + [sym_char] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [712] = { + [sym__expression] = STATE(2615), + [sym_block] = STATE(2615), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2615), + [sym_nil] = STATE(2615), + [sym__atom] = STATE(2615), + [sym_quoted_atom] = STATE(2615), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2615), + [sym_charlist] = STATE(2615), + [sym_sigil] = STATE(2615), + [sym_list] = STATE(2615), + [sym_tuple] = STATE(2615), + [sym_bitstring] = STATE(2615), + [sym_map] = STATE(2615), + [sym_unary_operator] = STATE(2615), + [sym_binary_operator] = STATE(2615), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2615), + [sym_call] = STATE(2615), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2615), + [sym_anonymous_function] = STATE(2615), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2251), + [sym_integer] = ACTIONS(2251), + [sym_float] = ACTIONS(2251), + [sym_char] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [713] = { + [sym__expression] = STATE(2737), + [sym_block] = STATE(2737), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2737), + [sym_nil] = STATE(2737), + [sym__atom] = STATE(2737), + [sym_quoted_atom] = STATE(2737), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2737), + [sym_charlist] = STATE(2737), + [sym_sigil] = STATE(2737), + [sym_list] = STATE(2737), + [sym_tuple] = STATE(2737), + [sym_bitstring] = STATE(2737), + [sym_map] = STATE(2737), + [sym_unary_operator] = STATE(2737), + [sym_binary_operator] = STATE(2737), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2737), + [sym_call] = STATE(2737), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2737), + [sym_anonymous_function] = STATE(2737), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2253), + [sym_integer] = ACTIONS(2253), + [sym_float] = ACTIONS(2253), + [sym_char] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [714] = { + [sym__expression] = STATE(2749), + [sym_block] = STATE(2749), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2749), + [sym_nil] = STATE(2749), + [sym__atom] = STATE(2749), + [sym_quoted_atom] = STATE(2749), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2749), + [sym_charlist] = STATE(2749), + [sym_sigil] = STATE(2749), + [sym_list] = STATE(2749), + [sym_tuple] = STATE(2749), + [sym_bitstring] = STATE(2749), + [sym_map] = STATE(2749), + [sym_unary_operator] = STATE(2749), + [sym_binary_operator] = STATE(2749), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2749), + [sym_call] = STATE(2749), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2749), + [sym_anonymous_function] = STATE(2749), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2255), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2255), + [sym_char] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [715] = { + [sym__expression] = STATE(2747), + [sym_block] = STATE(2747), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2747), + [sym_nil] = STATE(2747), + [sym__atom] = STATE(2747), + [sym_quoted_atom] = STATE(2747), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2747), + [sym_charlist] = STATE(2747), + [sym_sigil] = STATE(2747), + [sym_list] = STATE(2747), + [sym_tuple] = STATE(2747), + [sym_bitstring] = STATE(2747), + [sym_map] = STATE(2747), + [sym_unary_operator] = STATE(2747), + [sym_binary_operator] = STATE(2747), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2747), + [sym_call] = STATE(2747), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2747), + [sym_anonymous_function] = STATE(2747), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2257), + [sym_integer] = ACTIONS(2257), + [sym_float] = ACTIONS(2257), + [sym_char] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [716] = { + [sym__expression] = STATE(2746), + [sym_block] = STATE(2746), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2746), + [sym_nil] = STATE(2746), + [sym__atom] = STATE(2746), + [sym_quoted_atom] = STATE(2746), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2746), + [sym_charlist] = STATE(2746), + [sym_sigil] = STATE(2746), + [sym_list] = STATE(2746), + [sym_tuple] = STATE(2746), + [sym_bitstring] = STATE(2746), + [sym_map] = STATE(2746), + [sym_unary_operator] = STATE(2746), + [sym_binary_operator] = STATE(2746), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2746), + [sym_call] = STATE(2746), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2746), + [sym_anonymous_function] = STATE(2746), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2259), + [sym_integer] = ACTIONS(2259), + [sym_float] = ACTIONS(2259), + [sym_char] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [717] = { + [sym__expression] = STATE(2745), + [sym_block] = STATE(2745), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2745), + [sym_nil] = STATE(2745), + [sym__atom] = STATE(2745), + [sym_quoted_atom] = STATE(2745), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2745), + [sym_charlist] = STATE(2745), + [sym_sigil] = STATE(2745), + [sym_list] = STATE(2745), + [sym_tuple] = STATE(2745), + [sym_bitstring] = STATE(2745), + [sym_map] = STATE(2745), + [sym_unary_operator] = STATE(2745), + [sym_binary_operator] = STATE(2745), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2745), + [sym_call] = STATE(2745), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2745), + [sym_anonymous_function] = STATE(2745), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2261), + [sym_integer] = ACTIONS(2261), + [sym_float] = ACTIONS(2261), + [sym_char] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [718] = { + [sym__expression] = STATE(2744), + [sym_block] = STATE(2744), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2744), + [sym_nil] = STATE(2744), + [sym__atom] = STATE(2744), + [sym_quoted_atom] = STATE(2744), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2744), + [sym_charlist] = STATE(2744), + [sym_sigil] = STATE(2744), + [sym_list] = STATE(2744), + [sym_tuple] = STATE(2744), + [sym_bitstring] = STATE(2744), + [sym_map] = STATE(2744), + [sym_unary_operator] = STATE(2744), + [sym_binary_operator] = STATE(2744), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2744), + [sym_call] = STATE(2744), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2744), + [sym_anonymous_function] = STATE(2744), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2263), + [sym_integer] = ACTIONS(2263), + [sym_float] = ACTIONS(2263), + [sym_char] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [719] = { + [sym__expression] = STATE(2743), + [sym_block] = STATE(2743), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2743), + [sym_nil] = STATE(2743), + [sym__atom] = STATE(2743), + [sym_quoted_atom] = STATE(2743), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2743), + [sym_charlist] = STATE(2743), + [sym_sigil] = STATE(2743), + [sym_list] = STATE(2743), + [sym_tuple] = STATE(2743), + [sym_bitstring] = STATE(2743), + [sym_map] = STATE(2743), + [sym_unary_operator] = STATE(2743), + [sym_binary_operator] = STATE(2743), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2743), + [sym_call] = STATE(2743), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2743), + [sym_anonymous_function] = STATE(2743), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2265), + [sym_integer] = ACTIONS(2265), + [sym_float] = ACTIONS(2265), + [sym_char] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [720] = { + [sym__expression] = STATE(2742), + [sym_block] = STATE(2742), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2742), + [sym_nil] = STATE(2742), + [sym__atom] = STATE(2742), + [sym_quoted_atom] = STATE(2742), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2742), + [sym_charlist] = STATE(2742), + [sym_sigil] = STATE(2742), + [sym_list] = STATE(2742), + [sym_tuple] = STATE(2742), + [sym_bitstring] = STATE(2742), + [sym_map] = STATE(2742), + [sym_unary_operator] = STATE(2742), + [sym_binary_operator] = STATE(2742), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2742), + [sym_call] = STATE(2742), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2267), + [sym_integer] = ACTIONS(2267), + [sym_float] = ACTIONS(2267), + [sym_char] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2267), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [721] = { + [sym__expression] = STATE(2741), + [sym_block] = STATE(2741), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2741), + [sym_nil] = STATE(2741), + [sym__atom] = STATE(2741), + [sym_quoted_atom] = STATE(2741), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2741), + [sym_charlist] = STATE(2741), + [sym_sigil] = STATE(2741), + [sym_list] = STATE(2741), + [sym_tuple] = STATE(2741), + [sym_bitstring] = STATE(2741), + [sym_map] = STATE(2741), + [sym_unary_operator] = STATE(2741), + [sym_binary_operator] = STATE(2741), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2741), + [sym_call] = STATE(2741), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2741), + [sym_anonymous_function] = STATE(2741), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2269), + [sym_integer] = ACTIONS(2269), + [sym_float] = ACTIONS(2269), + [sym_char] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [722] = { + [sym__expression] = STATE(2740), + [sym_block] = STATE(2740), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2740), + [sym_nil] = STATE(2740), + [sym__atom] = STATE(2740), + [sym_quoted_atom] = STATE(2740), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2740), + [sym_charlist] = STATE(2740), + [sym_sigil] = STATE(2740), + [sym_list] = STATE(2740), + [sym_tuple] = STATE(2740), + [sym_bitstring] = STATE(2740), + [sym_map] = STATE(2740), + [sym_unary_operator] = STATE(2740), + [sym_binary_operator] = STATE(2740), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2740), + [sym_call] = STATE(2740), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2740), + [sym_anonymous_function] = STATE(2740), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2271), + [sym_integer] = ACTIONS(2271), + [sym_float] = ACTIONS(2271), + [sym_char] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2271), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [723] = { + [sym__expression] = STATE(2282), + [sym_block] = STATE(2282), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2282), + [sym_nil] = STATE(2282), + [sym__atom] = STATE(2282), + [sym_quoted_atom] = STATE(2282), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2282), + [sym_charlist] = STATE(2282), + [sym_sigil] = STATE(2282), + [sym_list] = STATE(2282), + [sym_tuple] = STATE(2282), + [sym_bitstring] = STATE(2282), + [sym_map] = STATE(2282), + [sym_unary_operator] = STATE(2282), + [sym_binary_operator] = STATE(2282), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2282), + [sym_call] = STATE(2282), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2282), + [sym_anonymous_function] = STATE(2282), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2103), + [sym_integer] = ACTIONS(2103), + [sym_float] = ACTIONS(2103), + [sym_char] = ACTIONS(2103), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [724] = { + [sym__expression] = STATE(2079), + [sym_block] = STATE(2079), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2079), + [sym_nil] = STATE(2079), + [sym__atom] = STATE(2079), + [sym_quoted_atom] = STATE(2079), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2079), + [sym_charlist] = STATE(2079), + [sym_sigil] = STATE(2079), + [sym_list] = STATE(2079), + [sym_tuple] = STATE(2079), + [sym_bitstring] = STATE(2079), + [sym_map] = STATE(2079), + [sym_unary_operator] = STATE(2079), + [sym_binary_operator] = STATE(2079), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2079), + [sym_call] = STATE(2079), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2079), + [sym_anonymous_function] = STATE(2079), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2273), + [sym_integer] = ACTIONS(2273), + [sym_float] = ACTIONS(2273), + [sym_char] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [725] = { + [sym__expression] = STATE(2080), + [sym_block] = STATE(2080), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2080), + [sym_nil] = STATE(2080), + [sym__atom] = STATE(2080), + [sym_quoted_atom] = STATE(2080), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2080), + [sym_charlist] = STATE(2080), + [sym_sigil] = STATE(2080), + [sym_list] = STATE(2080), + [sym_tuple] = STATE(2080), + [sym_bitstring] = STATE(2080), + [sym_map] = STATE(2080), + [sym_unary_operator] = STATE(2080), + [sym_binary_operator] = STATE(2080), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2080), + [sym_call] = STATE(2080), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2080), + [sym_anonymous_function] = STATE(2080), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2275), + [sym_integer] = ACTIONS(2275), + [sym_float] = ACTIONS(2275), + [sym_char] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [726] = { + [sym__expression] = STATE(2019), + [sym_block] = STATE(2019), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2019), + [sym_nil] = STATE(2019), + [sym__atom] = STATE(2019), + [sym_quoted_atom] = STATE(2019), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2019), + [sym_charlist] = STATE(2019), + [sym_sigil] = STATE(2019), + [sym_list] = STATE(2019), + [sym_tuple] = STATE(2019), + [sym_bitstring] = STATE(2019), + [sym_map] = STATE(2019), + [sym_unary_operator] = STATE(2019), + [sym_binary_operator] = STATE(2019), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2019), + [sym_call] = STATE(2019), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2019), + [sym_anonymous_function] = STATE(2019), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2277), + [sym_integer] = ACTIONS(2277), + [sym_float] = ACTIONS(2277), + [sym_char] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [727] = { + [sym__expression] = STATE(2085), + [sym_block] = STATE(2085), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2085), + [sym_nil] = STATE(2085), + [sym__atom] = STATE(2085), + [sym_quoted_atom] = STATE(2085), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2085), + [sym_charlist] = STATE(2085), + [sym_sigil] = STATE(2085), + [sym_list] = STATE(2085), + [sym_tuple] = STATE(2085), + [sym_bitstring] = STATE(2085), + [sym_map] = STATE(2085), + [sym_unary_operator] = STATE(2085), + [sym_binary_operator] = STATE(2085), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2085), + [sym_call] = STATE(2085), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2085), + [sym_anonymous_function] = STATE(2085), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2279), + [sym_integer] = ACTIONS(2279), + [sym_float] = ACTIONS(2279), + [sym_char] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [728] = { + [sym__expression] = STATE(3234), + [sym_block] = STATE(3234), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3234), + [sym_nil] = STATE(3234), + [sym__atom] = STATE(3234), + [sym_quoted_atom] = STATE(3234), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3234), + [sym_charlist] = STATE(3234), + [sym_sigil] = STATE(3234), + [sym_list] = STATE(3234), + [sym_tuple] = STATE(3234), + [sym_bitstring] = STATE(3234), + [sym_map] = STATE(3234), + [sym_unary_operator] = STATE(3234), + [sym_binary_operator] = STATE(3234), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3234), + [sym_call] = STATE(3234), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3234), + [sym_anonymous_function] = STATE(3234), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2281), + [sym_integer] = ACTIONS(2281), + [sym_float] = ACTIONS(2281), + [sym_char] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [729] = { + [sym__expression] = STATE(2087), + [sym_block] = STATE(2087), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2087), + [sym_nil] = STATE(2087), + [sym__atom] = STATE(2087), + [sym_quoted_atom] = STATE(2087), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2087), + [sym_charlist] = STATE(2087), + [sym_sigil] = STATE(2087), + [sym_list] = STATE(2087), + [sym_tuple] = STATE(2087), + [sym_bitstring] = STATE(2087), + [sym_map] = STATE(2087), + [sym_unary_operator] = STATE(2087), + [sym_binary_operator] = STATE(2087), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2087), + [sym_call] = STATE(2087), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2087), + [sym_anonymous_function] = STATE(2087), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2283), + [sym_integer] = ACTIONS(2283), + [sym_float] = ACTIONS(2283), + [sym_char] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [730] = { + [sym__expression] = STATE(2088), + [sym_block] = STATE(2088), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2088), + [sym_nil] = STATE(2088), + [sym__atom] = STATE(2088), + [sym_quoted_atom] = STATE(2088), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2088), + [sym_charlist] = STATE(2088), + [sym_sigil] = STATE(2088), + [sym_list] = STATE(2088), + [sym_tuple] = STATE(2088), + [sym_bitstring] = STATE(2088), + [sym_map] = STATE(2088), + [sym_unary_operator] = STATE(2088), + [sym_binary_operator] = STATE(2088), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2088), + [sym_call] = STATE(2088), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2088), + [sym_anonymous_function] = STATE(2088), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2285), + [sym_integer] = ACTIONS(2285), + [sym_float] = ACTIONS(2285), + [sym_char] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [731] = { + [sym__expression] = STATE(2089), + [sym_block] = STATE(2089), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2089), + [sym_nil] = STATE(2089), + [sym__atom] = STATE(2089), + [sym_quoted_atom] = STATE(2089), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2089), + [sym_charlist] = STATE(2089), + [sym_sigil] = STATE(2089), + [sym_list] = STATE(2089), + [sym_tuple] = STATE(2089), + [sym_bitstring] = STATE(2089), + [sym_map] = STATE(2089), + [sym_unary_operator] = STATE(2089), + [sym_binary_operator] = STATE(2089), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2089), + [sym_call] = STATE(2089), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2089), + [sym_anonymous_function] = STATE(2089), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2287), + [sym_integer] = ACTIONS(2287), + [sym_float] = ACTIONS(2287), + [sym_char] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [732] = { + [sym__expression] = STATE(3235), + [sym_block] = STATE(3235), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3235), + [sym_nil] = STATE(3235), + [sym__atom] = STATE(3235), + [sym_quoted_atom] = STATE(3235), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3235), + [sym_charlist] = STATE(3235), + [sym_sigil] = STATE(3235), + [sym_list] = STATE(3235), + [sym_tuple] = STATE(3235), + [sym_bitstring] = STATE(3235), + [sym_map] = STATE(3235), + [sym_unary_operator] = STATE(3235), + [sym_binary_operator] = STATE(3235), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3235), + [sym_call] = STATE(3235), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3235), + [sym_anonymous_function] = STATE(3235), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2289), + [sym_integer] = ACTIONS(2289), + [sym_float] = ACTIONS(2289), + [sym_char] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [733] = { + [sym__expression] = STATE(3198), + [sym_block] = STATE(3198), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3198), + [sym_nil] = STATE(3198), + [sym__atom] = STATE(3198), + [sym_quoted_atom] = STATE(3198), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3198), + [sym_charlist] = STATE(3198), + [sym_sigil] = STATE(3198), + [sym_list] = STATE(3198), + [sym_tuple] = STATE(3198), + [sym_bitstring] = STATE(3198), + [sym_map] = STATE(3198), + [sym_unary_operator] = STATE(3198), + [sym_binary_operator] = STATE(3198), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3198), + [sym_call] = STATE(3198), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3198), + [sym_anonymous_function] = STATE(3198), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2291), + [sym_integer] = ACTIONS(2291), + [sym_float] = ACTIONS(2291), + [sym_char] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [734] = { + [sym__expression] = STATE(2616), + [sym_block] = STATE(2616), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2616), + [sym_nil] = STATE(2616), + [sym__atom] = STATE(2616), + [sym_quoted_atom] = STATE(2616), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2616), + [sym_charlist] = STATE(2616), + [sym_sigil] = STATE(2616), + [sym_list] = STATE(2616), + [sym_tuple] = STATE(2616), + [sym_bitstring] = STATE(2616), + [sym_map] = STATE(2616), + [sym_unary_operator] = STATE(2616), + [sym_binary_operator] = STATE(2616), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2616), + [sym_call] = STATE(2616), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2616), + [sym_anonymous_function] = STATE(2616), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2293), + [sym_integer] = ACTIONS(2293), + [sym_float] = ACTIONS(2293), + [sym_char] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [735] = { + [sym__expression] = STATE(3197), + [sym_block] = STATE(3197), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3197), + [sym_nil] = STATE(3197), + [sym__atom] = STATE(3197), + [sym_quoted_atom] = STATE(3197), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3197), + [sym_charlist] = STATE(3197), + [sym_sigil] = STATE(3197), + [sym_list] = STATE(3197), + [sym_tuple] = STATE(3197), + [sym_bitstring] = STATE(3197), + [sym_map] = STATE(3197), + [sym_unary_operator] = STATE(3197), + [sym_binary_operator] = STATE(3197), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3197), + [sym_call] = STATE(3197), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3197), + [sym_anonymous_function] = STATE(3197), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2295), + [sym_integer] = ACTIONS(2295), + [sym_float] = ACTIONS(2295), + [sym_char] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2295), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [736] = { + [sym__expression] = STATE(2617), + [sym_block] = STATE(2617), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2617), + [sym_nil] = STATE(2617), + [sym__atom] = STATE(2617), + [sym_quoted_atom] = STATE(2617), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2617), + [sym_charlist] = STATE(2617), + [sym_sigil] = STATE(2617), + [sym_list] = STATE(2617), + [sym_tuple] = STATE(2617), + [sym_bitstring] = STATE(2617), + [sym_map] = STATE(2617), + [sym_unary_operator] = STATE(2617), + [sym_binary_operator] = STATE(2617), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2617), + [sym_call] = STATE(2617), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2617), + [sym_anonymous_function] = STATE(2617), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2297), + [sym_integer] = ACTIONS(2297), + [sym_float] = ACTIONS(2297), + [sym_char] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [737] = { + [sym__expression] = STATE(2618), + [sym_block] = STATE(2618), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2618), + [sym_nil] = STATE(2618), + [sym__atom] = STATE(2618), + [sym_quoted_atom] = STATE(2618), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2618), + [sym_charlist] = STATE(2618), + [sym_sigil] = STATE(2618), + [sym_list] = STATE(2618), + [sym_tuple] = STATE(2618), + [sym_bitstring] = STATE(2618), + [sym_map] = STATE(2618), + [sym_unary_operator] = STATE(2618), + [sym_binary_operator] = STATE(2618), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2618), + [sym_call] = STATE(2618), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2618), + [sym_anonymous_function] = STATE(2618), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2299), + [sym_integer] = ACTIONS(2299), + [sym_float] = ACTIONS(2299), + [sym_char] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [738] = { + [sym__expression] = STATE(2619), + [sym_block] = STATE(2619), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2619), + [sym_nil] = STATE(2619), + [sym__atom] = STATE(2619), + [sym_quoted_atom] = STATE(2619), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2619), + [sym_charlist] = STATE(2619), + [sym_sigil] = STATE(2619), + [sym_list] = STATE(2619), + [sym_tuple] = STATE(2619), + [sym_bitstring] = STATE(2619), + [sym_map] = STATE(2619), + [sym_unary_operator] = STATE(2619), + [sym_binary_operator] = STATE(2619), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2619), + [sym_call] = STATE(2619), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2619), + [sym_anonymous_function] = STATE(2619), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2301), + [sym_integer] = ACTIONS(2301), + [sym_float] = ACTIONS(2301), + [sym_char] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [739] = { + [sym__expression] = STATE(2620), + [sym_block] = STATE(2620), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2620), + [sym_nil] = STATE(2620), + [sym__atom] = STATE(2620), + [sym_quoted_atom] = STATE(2620), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2620), + [sym_charlist] = STATE(2620), + [sym_sigil] = STATE(2620), + [sym_list] = STATE(2620), + [sym_tuple] = STATE(2620), + [sym_bitstring] = STATE(2620), + [sym_map] = STATE(2620), + [sym_unary_operator] = STATE(2620), + [sym_binary_operator] = STATE(2620), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2620), + [sym_call] = STATE(2620), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2620), + [sym_anonymous_function] = STATE(2620), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2303), + [sym_integer] = ACTIONS(2303), + [sym_float] = ACTIONS(2303), + [sym_char] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [740] = { + [sym__expression] = STATE(3196), + [sym_block] = STATE(3196), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3196), + [sym_nil] = STATE(3196), + [sym__atom] = STATE(3196), + [sym_quoted_atom] = STATE(3196), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3196), + [sym_charlist] = STATE(3196), + [sym_sigil] = STATE(3196), + [sym_list] = STATE(3196), + [sym_tuple] = STATE(3196), + [sym_bitstring] = STATE(3196), + [sym_map] = STATE(3196), + [sym_unary_operator] = STATE(3196), + [sym_binary_operator] = STATE(3196), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3196), + [sym_call] = STATE(3196), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3196), + [sym_anonymous_function] = STATE(3196), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2305), + [sym_integer] = ACTIONS(2305), + [sym_float] = ACTIONS(2305), + [sym_char] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [741] = { + [sym__expression] = STATE(2092), + [sym_block] = STATE(2092), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2092), + [sym_nil] = STATE(2092), + [sym__atom] = STATE(2092), + [sym_quoted_atom] = STATE(2092), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2092), + [sym_charlist] = STATE(2092), + [sym_sigil] = STATE(2092), + [sym_list] = STATE(2092), + [sym_tuple] = STATE(2092), + [sym_bitstring] = STATE(2092), + [sym_map] = STATE(2092), + [sym_unary_operator] = STATE(2092), + [sym_binary_operator] = STATE(2092), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2092), + [sym_call] = STATE(2092), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2092), + [sym_anonymous_function] = STATE(2092), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2307), + [sym_integer] = ACTIONS(2307), + [sym_float] = ACTIONS(2307), + [sym_char] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [742] = { + [sym__expression] = STATE(3240), + [sym_block] = STATE(3240), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3240), + [sym_nil] = STATE(3240), + [sym__atom] = STATE(3240), + [sym_quoted_atom] = STATE(3240), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3240), + [sym_charlist] = STATE(3240), + [sym_sigil] = STATE(3240), + [sym_list] = STATE(3240), + [sym_tuple] = STATE(3240), + [sym_bitstring] = STATE(3240), + [sym_map] = STATE(3240), + [sym_unary_operator] = STATE(3240), + [sym_binary_operator] = STATE(3240), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3240), + [sym_call] = STATE(3240), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3240), + [sym_anonymous_function] = STATE(3240), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2309), + [sym_integer] = ACTIONS(2309), + [sym_float] = ACTIONS(2309), + [sym_char] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [743] = { + [sym__expression] = STATE(3241), + [sym_block] = STATE(3241), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3241), + [sym_nil] = STATE(3241), + [sym__atom] = STATE(3241), + [sym_quoted_atom] = STATE(3241), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3241), + [sym_charlist] = STATE(3241), + [sym_sigil] = STATE(3241), + [sym_list] = STATE(3241), + [sym_tuple] = STATE(3241), + [sym_bitstring] = STATE(3241), + [sym_map] = STATE(3241), + [sym_unary_operator] = STATE(3241), + [sym_binary_operator] = STATE(3241), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3241), + [sym_call] = STATE(3241), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3241), + [sym_anonymous_function] = STATE(3241), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2311), + [sym_integer] = ACTIONS(2311), + [sym_float] = ACTIONS(2311), + [sym_char] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [744] = { + [sym__expression] = STATE(3195), + [sym_block] = STATE(3195), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3195), + [sym_nil] = STATE(3195), + [sym__atom] = STATE(3195), + [sym_quoted_atom] = STATE(3195), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3195), + [sym_charlist] = STATE(3195), + [sym_sigil] = STATE(3195), + [sym_list] = STATE(3195), + [sym_tuple] = STATE(3195), + [sym_bitstring] = STATE(3195), + [sym_map] = STATE(3195), + [sym_unary_operator] = STATE(3195), + [sym_binary_operator] = STATE(3195), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3195), + [sym_call] = STATE(3195), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3195), + [sym_anonymous_function] = STATE(3195), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2313), + [sym_integer] = ACTIONS(2313), + [sym_float] = ACTIONS(2313), + [sym_char] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [745] = { + [sym__expression] = STATE(1274), + [sym_block] = STATE(1274), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1274), + [sym_nil] = STATE(1274), + [sym__atom] = STATE(1274), + [sym_quoted_atom] = STATE(1274), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1274), + [sym_charlist] = STATE(1274), + [sym_sigil] = STATE(1274), + [sym_list] = STATE(1274), + [sym_tuple] = STATE(1274), + [sym_bitstring] = STATE(1274), + [sym_map] = STATE(1274), + [sym_unary_operator] = STATE(1274), + [sym_binary_operator] = STATE(1274), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1274), + [sym_call] = STATE(1274), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1274), + [sym_anonymous_function] = STATE(1274), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2315), + [sym_integer] = ACTIONS(2315), + [sym_float] = ACTIONS(2315), + [sym_char] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [746] = { + [sym__expression] = STATE(1320), + [sym_block] = STATE(1320), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1320), + [sym_nil] = STATE(1320), + [sym__atom] = STATE(1320), + [sym_quoted_atom] = STATE(1320), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1320), + [sym_charlist] = STATE(1320), + [sym_sigil] = STATE(1320), + [sym_list] = STATE(1320), + [sym_tuple] = STATE(1320), + [sym_bitstring] = STATE(1320), + [sym_map] = STATE(1320), + [sym_unary_operator] = STATE(1320), + [sym_binary_operator] = STATE(1320), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1320), + [sym_call] = STATE(1320), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1320), + [sym_anonymous_function] = STATE(1320), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2317), + [sym_integer] = ACTIONS(2317), + [sym_float] = ACTIONS(2317), + [sym_char] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [747] = { + [sym__expression] = STATE(1293), + [sym_block] = STATE(1293), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1293), + [sym_nil] = STATE(1293), + [sym__atom] = STATE(1293), + [sym_quoted_atom] = STATE(1293), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1293), + [sym_charlist] = STATE(1293), + [sym_sigil] = STATE(1293), + [sym_list] = STATE(1293), + [sym_tuple] = STATE(1293), + [sym_bitstring] = STATE(1293), + [sym_map] = STATE(1293), + [sym_unary_operator] = STATE(1293), + [sym_binary_operator] = STATE(1293), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1293), + [sym_call] = STATE(1293), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1293), + [sym_anonymous_function] = STATE(1293), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2319), + [sym_integer] = ACTIONS(2319), + [sym_float] = ACTIONS(2319), + [sym_char] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [748] = { + [sym__expression] = STATE(1287), + [sym_block] = STATE(1287), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1287), + [sym_nil] = STATE(1287), + [sym__atom] = STATE(1287), + [sym_quoted_atom] = STATE(1287), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1287), + [sym_charlist] = STATE(1287), + [sym_sigil] = STATE(1287), + [sym_list] = STATE(1287), + [sym_tuple] = STATE(1287), + [sym_bitstring] = STATE(1287), + [sym_map] = STATE(1287), + [sym_unary_operator] = STATE(1287), + [sym_binary_operator] = STATE(1287), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1287), + [sym_call] = STATE(1287), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1287), + [sym_anonymous_function] = STATE(1287), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2321), + [sym_integer] = ACTIONS(2321), + [sym_float] = ACTIONS(2321), + [sym_char] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [749] = { + [sym__expression] = STATE(1279), + [sym_block] = STATE(1279), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1279), + [sym_nil] = STATE(1279), + [sym__atom] = STATE(1279), + [sym_quoted_atom] = STATE(1279), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1279), + [sym_charlist] = STATE(1279), + [sym_sigil] = STATE(1279), + [sym_list] = STATE(1279), + [sym_tuple] = STATE(1279), + [sym_bitstring] = STATE(1279), + [sym_map] = STATE(1279), + [sym_unary_operator] = STATE(1279), + [sym_binary_operator] = STATE(1279), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1279), + [sym_call] = STATE(1279), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1279), + [sym_anonymous_function] = STATE(1279), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2323), + [sym_integer] = ACTIONS(2323), + [sym_float] = ACTIONS(2323), + [sym_char] = ACTIONS(2323), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [750] = { + [sym__expression] = STATE(1259), + [sym_block] = STATE(1259), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1259), + [sym_nil] = STATE(1259), + [sym__atom] = STATE(1259), + [sym_quoted_atom] = STATE(1259), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1259), + [sym_charlist] = STATE(1259), + [sym_sigil] = STATE(1259), + [sym_list] = STATE(1259), + [sym_tuple] = STATE(1259), + [sym_bitstring] = STATE(1259), + [sym_map] = STATE(1259), + [sym_unary_operator] = STATE(1259), + [sym_binary_operator] = STATE(1259), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1259), + [sym_call] = STATE(1259), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1259), + [sym_anonymous_function] = STATE(1259), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2325), + [sym_integer] = ACTIONS(2325), + [sym_float] = ACTIONS(2325), + [sym_char] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2325), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [751] = { + [sym__expression] = STATE(1344), + [sym_block] = STATE(1344), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1344), + [sym_nil] = STATE(1344), + [sym__atom] = STATE(1344), + [sym_quoted_atom] = STATE(1344), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1344), + [sym_charlist] = STATE(1344), + [sym_sigil] = STATE(1344), + [sym_list] = STATE(1344), + [sym_tuple] = STATE(1344), + [sym_bitstring] = STATE(1344), + [sym_map] = STATE(1344), + [sym_unary_operator] = STATE(1344), + [sym_binary_operator] = STATE(1344), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1344), + [sym_call] = STATE(1344), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1344), + [sym_anonymous_function] = STATE(1344), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2327), + [sym_integer] = ACTIONS(2327), + [sym_float] = ACTIONS(2327), + [sym_char] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [752] = { + [sym__expression] = STATE(1294), + [sym_block] = STATE(1294), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1294), + [sym_nil] = STATE(1294), + [sym__atom] = STATE(1294), + [sym_quoted_atom] = STATE(1294), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1294), + [sym_charlist] = STATE(1294), + [sym_sigil] = STATE(1294), + [sym_list] = STATE(1294), + [sym_tuple] = STATE(1294), + [sym_bitstring] = STATE(1294), + [sym_map] = STATE(1294), + [sym_unary_operator] = STATE(1294), + [sym_binary_operator] = STATE(1294), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1294), + [sym_call] = STATE(1294), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1294), + [sym_anonymous_function] = STATE(1294), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2329), + [sym_integer] = ACTIONS(2329), + [sym_float] = ACTIONS(2329), + [sym_char] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [753] = { + [sym__expression] = STATE(1298), + [sym_block] = STATE(1298), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1298), + [sym_nil] = STATE(1298), + [sym__atom] = STATE(1298), + [sym_quoted_atom] = STATE(1298), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1298), + [sym_charlist] = STATE(1298), + [sym_sigil] = STATE(1298), + [sym_list] = STATE(1298), + [sym_tuple] = STATE(1298), + [sym_bitstring] = STATE(1298), + [sym_map] = STATE(1298), + [sym_unary_operator] = STATE(1298), + [sym_binary_operator] = STATE(1298), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1298), + [sym_call] = STATE(1298), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1298), + [sym_anonymous_function] = STATE(1298), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2331), + [sym_integer] = ACTIONS(2331), + [sym_float] = ACTIONS(2331), + [sym_char] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [754] = { + [sym__expression] = STATE(1300), + [sym_block] = STATE(1300), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1300), + [sym_nil] = STATE(1300), + [sym__atom] = STATE(1300), + [sym_quoted_atom] = STATE(1300), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1300), + [sym_charlist] = STATE(1300), + [sym_sigil] = STATE(1300), + [sym_list] = STATE(1300), + [sym_tuple] = STATE(1300), + [sym_bitstring] = STATE(1300), + [sym_map] = STATE(1300), + [sym_unary_operator] = STATE(1300), + [sym_binary_operator] = STATE(1300), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1300), + [sym_call] = STATE(1300), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1300), + [sym_anonymous_function] = STATE(1300), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2333), + [sym_integer] = ACTIONS(2333), + [sym_float] = ACTIONS(2333), + [sym_char] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [755] = { + [sym__expression] = STATE(1302), + [sym_block] = STATE(1302), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1302), + [sym_nil] = STATE(1302), + [sym__atom] = STATE(1302), + [sym_quoted_atom] = STATE(1302), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1302), + [sym_charlist] = STATE(1302), + [sym_sigil] = STATE(1302), + [sym_list] = STATE(1302), + [sym_tuple] = STATE(1302), + [sym_bitstring] = STATE(1302), + [sym_map] = STATE(1302), + [sym_unary_operator] = STATE(1302), + [sym_binary_operator] = STATE(1302), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1302), + [sym_call] = STATE(1302), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1302), + [sym_anonymous_function] = STATE(1302), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2335), + [sym_integer] = ACTIONS(2335), + [sym_float] = ACTIONS(2335), + [sym_char] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [756] = { + [sym__expression] = STATE(2312), + [sym_block] = STATE(2312), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2312), + [sym_nil] = STATE(2312), + [sym__atom] = STATE(2312), + [sym_quoted_atom] = STATE(2312), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2312), + [sym_charlist] = STATE(2312), + [sym_sigil] = STATE(2312), + [sym_list] = STATE(2312), + [sym_tuple] = STATE(2312), + [sym_bitstring] = STATE(2312), + [sym_map] = STATE(2312), + [sym_unary_operator] = STATE(2312), + [sym_binary_operator] = STATE(2312), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2312), + [sym_call] = STATE(2312), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2312), + [sym_anonymous_function] = STATE(2312), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2337), + [sym_integer] = ACTIONS(2337), + [sym_float] = ACTIONS(2337), + [sym_char] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [757] = { + [sym__expression] = STATE(1311), + [sym_block] = STATE(1311), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1311), + [sym_nil] = STATE(1311), + [sym__atom] = STATE(1311), + [sym_quoted_atom] = STATE(1311), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1311), + [sym_charlist] = STATE(1311), + [sym_sigil] = STATE(1311), + [sym_list] = STATE(1311), + [sym_tuple] = STATE(1311), + [sym_bitstring] = STATE(1311), + [sym_map] = STATE(1311), + [sym_unary_operator] = STATE(1311), + [sym_binary_operator] = STATE(1311), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1311), + [sym_call] = STATE(1311), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1311), + [sym_anonymous_function] = STATE(1311), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2339), + [sym_integer] = ACTIONS(2339), + [sym_float] = ACTIONS(2339), + [sym_char] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [758] = { + [sym__expression] = STATE(1314), + [sym_block] = STATE(1314), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1314), + [sym_nil] = STATE(1314), + [sym__atom] = STATE(1314), + [sym_quoted_atom] = STATE(1314), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1314), + [sym_charlist] = STATE(1314), + [sym_sigil] = STATE(1314), + [sym_list] = STATE(1314), + [sym_tuple] = STATE(1314), + [sym_bitstring] = STATE(1314), + [sym_map] = STATE(1314), + [sym_unary_operator] = STATE(1314), + [sym_binary_operator] = STATE(1314), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1314), + [sym_call] = STATE(1314), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1314), + [sym_anonymous_function] = STATE(1314), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2341), + [sym_integer] = ACTIONS(2341), + [sym_float] = ACTIONS(2341), + [sym_char] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [759] = { + [sym__expression] = STATE(1316), + [sym_block] = STATE(1316), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1316), + [sym_nil] = STATE(1316), + [sym__atom] = STATE(1316), + [sym_quoted_atom] = STATE(1316), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1316), + [sym_charlist] = STATE(1316), + [sym_sigil] = STATE(1316), + [sym_list] = STATE(1316), + [sym_tuple] = STATE(1316), + [sym_bitstring] = STATE(1316), + [sym_map] = STATE(1316), + [sym_unary_operator] = STATE(1316), + [sym_binary_operator] = STATE(1316), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1316), + [sym_call] = STATE(1316), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1316), + [sym_anonymous_function] = STATE(1316), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2343), + [sym_integer] = ACTIONS(2343), + [sym_float] = ACTIONS(2343), + [sym_char] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [760] = { + [sym__expression] = STATE(2622), + [sym_block] = STATE(2622), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2622), + [sym_nil] = STATE(2622), + [sym__atom] = STATE(2622), + [sym_quoted_atom] = STATE(2622), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2622), + [sym_charlist] = STATE(2622), + [sym_sigil] = STATE(2622), + [sym_list] = STATE(2622), + [sym_tuple] = STATE(2622), + [sym_bitstring] = STATE(2622), + [sym_map] = STATE(2622), + [sym_unary_operator] = STATE(2622), + [sym_binary_operator] = STATE(2622), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2622), + [sym_call] = STATE(2622), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2622), + [sym_anonymous_function] = STATE(2622), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2345), + [sym_integer] = ACTIONS(2345), + [sym_float] = ACTIONS(2345), + [sym_char] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [761] = { + [sym__expression] = STATE(1334), + [sym_block] = STATE(1334), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1334), + [sym_nil] = STATE(1334), + [sym__atom] = STATE(1334), + [sym_quoted_atom] = STATE(1334), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1334), + [sym_charlist] = STATE(1334), + [sym_sigil] = STATE(1334), + [sym_list] = STATE(1334), + [sym_tuple] = STATE(1334), + [sym_bitstring] = STATE(1334), + [sym_map] = STATE(1334), + [sym_unary_operator] = STATE(1334), + [sym_binary_operator] = STATE(1334), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1334), + [sym_call] = STATE(1334), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1334), + [sym_anonymous_function] = STATE(1334), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2347), + [sym_integer] = ACTIONS(2347), + [sym_float] = ACTIONS(2347), + [sym_char] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [762] = { + [sym__expression] = STATE(1335), + [sym_block] = STATE(1335), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1335), + [sym_nil] = STATE(1335), + [sym__atom] = STATE(1335), + [sym_quoted_atom] = STATE(1335), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1335), + [sym_charlist] = STATE(1335), + [sym_sigil] = STATE(1335), + [sym_list] = STATE(1335), + [sym_tuple] = STATE(1335), + [sym_bitstring] = STATE(1335), + [sym_map] = STATE(1335), + [sym_unary_operator] = STATE(1335), + [sym_binary_operator] = STATE(1335), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1335), + [sym_call] = STATE(1335), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1335), + [sym_anonymous_function] = STATE(1335), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2349), + [sym_integer] = ACTIONS(2349), + [sym_float] = ACTIONS(2349), + [sym_char] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [763] = { + [sym__expression] = STATE(2623), + [sym_block] = STATE(2623), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2623), + [sym_nil] = STATE(2623), + [sym__atom] = STATE(2623), + [sym_quoted_atom] = STATE(2623), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2623), + [sym_charlist] = STATE(2623), + [sym_sigil] = STATE(2623), + [sym_list] = STATE(2623), + [sym_tuple] = STATE(2623), + [sym_bitstring] = STATE(2623), + [sym_map] = STATE(2623), + [sym_unary_operator] = STATE(2623), + [sym_binary_operator] = STATE(2623), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2623), + [sym_call] = STATE(2623), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2623), + [sym_anonymous_function] = STATE(2623), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2351), + [sym_integer] = ACTIONS(2351), + [sym_float] = ACTIONS(2351), + [sym_char] = ACTIONS(2351), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [764] = { + [sym__expression] = STATE(1176), + [sym_block] = STATE(1176), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1176), + [sym_nil] = STATE(1176), + [sym__atom] = STATE(1176), + [sym_quoted_atom] = STATE(1176), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1176), + [sym_charlist] = STATE(1176), + [sym_sigil] = STATE(1176), + [sym_list] = STATE(1176), + [sym_tuple] = STATE(1176), + [sym_bitstring] = STATE(1176), + [sym_map] = STATE(1176), + [sym_unary_operator] = STATE(1176), + [sym_binary_operator] = STATE(1176), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1176), + [sym_call] = STATE(1176), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1176), + [sym_anonymous_function] = STATE(1176), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2353), + [sym_integer] = ACTIONS(2353), + [sym_float] = ACTIONS(2353), + [sym_char] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [765] = { + [sym__expression] = STATE(1271), + [sym_block] = STATE(1271), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1271), + [sym_nil] = STATE(1271), + [sym__atom] = STATE(1271), + [sym_quoted_atom] = STATE(1271), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1271), + [sym_charlist] = STATE(1271), + [sym_sigil] = STATE(1271), + [sym_list] = STATE(1271), + [sym_tuple] = STATE(1271), + [sym_bitstring] = STATE(1271), + [sym_map] = STATE(1271), + [sym_unary_operator] = STATE(1271), + [sym_binary_operator] = STATE(1271), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1271), + [sym_call] = STATE(1271), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1271), + [sym_anonymous_function] = STATE(1271), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2355), + [sym_integer] = ACTIONS(2355), + [sym_float] = ACTIONS(2355), + [sym_char] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [766] = { + [sym__expression] = STATE(2630), + [sym_block] = STATE(2630), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2630), + [sym_nil] = STATE(2630), + [sym__atom] = STATE(2630), + [sym_quoted_atom] = STATE(2630), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2630), + [sym_charlist] = STATE(2630), + [sym_sigil] = STATE(2630), + [sym_list] = STATE(2630), + [sym_tuple] = STATE(2630), + [sym_bitstring] = STATE(2630), + [sym_map] = STATE(2630), + [sym_unary_operator] = STATE(2630), + [sym_binary_operator] = STATE(2630), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2630), + [sym_call] = STATE(2630), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2630), + [sym_anonymous_function] = STATE(2630), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2357), + [sym_integer] = ACTIONS(2357), + [sym_float] = ACTIONS(2357), + [sym_char] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [767] = { + [sym__expression] = STATE(3194), + [sym_block] = STATE(3194), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3194), + [sym_nil] = STATE(3194), + [sym__atom] = STATE(3194), + [sym_quoted_atom] = STATE(3194), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3194), + [sym_charlist] = STATE(3194), + [sym_sigil] = STATE(3194), + [sym_list] = STATE(3194), + [sym_tuple] = STATE(3194), + [sym_bitstring] = STATE(3194), + [sym_map] = STATE(3194), + [sym_unary_operator] = STATE(3194), + [sym_binary_operator] = STATE(3194), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3194), + [sym_call] = STATE(3194), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3194), + [sym_anonymous_function] = STATE(3194), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2359), + [sym_integer] = ACTIONS(2359), + [sym_float] = ACTIONS(2359), + [sym_char] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [768] = { + [sym__expression] = STATE(3193), + [sym_block] = STATE(3193), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3193), + [sym_nil] = STATE(3193), + [sym__atom] = STATE(3193), + [sym_quoted_atom] = STATE(3193), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3193), + [sym_charlist] = STATE(3193), + [sym_sigil] = STATE(3193), + [sym_list] = STATE(3193), + [sym_tuple] = STATE(3193), + [sym_bitstring] = STATE(3193), + [sym_map] = STATE(3193), + [sym_unary_operator] = STATE(3193), + [sym_binary_operator] = STATE(3193), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3193), + [sym_call] = STATE(3193), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3193), + [sym_anonymous_function] = STATE(3193), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2361), + [sym_integer] = ACTIONS(2361), + [sym_float] = ACTIONS(2361), + [sym_char] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [769] = { + [sym__expression] = STATE(1237), + [sym_block] = STATE(1237), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1237), + [sym_nil] = STATE(1237), + [sym__atom] = STATE(1237), + [sym_quoted_atom] = STATE(1237), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1237), + [sym_charlist] = STATE(1237), + [sym_sigil] = STATE(1237), + [sym_list] = STATE(1237), + [sym_tuple] = STATE(1237), + [sym_bitstring] = STATE(1237), + [sym_map] = STATE(1237), + [sym_unary_operator] = STATE(1237), + [sym_binary_operator] = STATE(1237), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1237), + [sym_call] = STATE(1237), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1237), + [sym_anonymous_function] = STATE(1237), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2363), + [sym_integer] = ACTIONS(2363), + [sym_float] = ACTIONS(2363), + [sym_char] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [770] = { + [sym__expression] = STATE(1260), + [sym_block] = STATE(1260), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1260), + [sym_nil] = STATE(1260), + [sym__atom] = STATE(1260), + [sym_quoted_atom] = STATE(1260), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1260), + [sym_charlist] = STATE(1260), + [sym_sigil] = STATE(1260), + [sym_list] = STATE(1260), + [sym_tuple] = STATE(1260), + [sym_bitstring] = STATE(1260), + [sym_map] = STATE(1260), + [sym_unary_operator] = STATE(1260), + [sym_binary_operator] = STATE(1260), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1260), + [sym_call] = STATE(1260), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1260), + [sym_anonymous_function] = STATE(1260), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2365), + [sym_integer] = ACTIONS(2365), + [sym_float] = ACTIONS(2365), + [sym_char] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [771] = { + [sym__expression] = STATE(3192), + [sym_block] = STATE(3192), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3192), + [sym_nil] = STATE(3192), + [sym__atom] = STATE(3192), + [sym_quoted_atom] = STATE(3192), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3192), + [sym_charlist] = STATE(3192), + [sym_sigil] = STATE(3192), + [sym_list] = STATE(3192), + [sym_tuple] = STATE(3192), + [sym_bitstring] = STATE(3192), + [sym_map] = STATE(3192), + [sym_unary_operator] = STATE(3192), + [sym_binary_operator] = STATE(3192), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3192), + [sym_call] = STATE(3192), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3192), + [sym_anonymous_function] = STATE(3192), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2367), + [sym_integer] = ACTIONS(2367), + [sym_float] = ACTIONS(2367), + [sym_char] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [772] = { + [sym__expression] = STATE(2093), + [sym_block] = STATE(2093), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2093), + [sym_nil] = STATE(2093), + [sym__atom] = STATE(2093), + [sym_quoted_atom] = STATE(2093), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2093), + [sym_charlist] = STATE(2093), + [sym_sigil] = STATE(2093), + [sym_list] = STATE(2093), + [sym_tuple] = STATE(2093), + [sym_bitstring] = STATE(2093), + [sym_map] = STATE(2093), + [sym_unary_operator] = STATE(2093), + [sym_binary_operator] = STATE(2093), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2093), + [sym_call] = STATE(2093), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2093), + [sym_anonymous_function] = STATE(2093), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2369), + [sym_integer] = ACTIONS(2369), + [sym_float] = ACTIONS(2369), + [sym_char] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [773] = { + [sym__expression] = STATE(3191), + [sym_block] = STATE(3191), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3191), + [sym_nil] = STATE(3191), + [sym__atom] = STATE(3191), + [sym_quoted_atom] = STATE(3191), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3191), + [sym_charlist] = STATE(3191), + [sym_sigil] = STATE(3191), + [sym_list] = STATE(3191), + [sym_tuple] = STATE(3191), + [sym_bitstring] = STATE(3191), + [sym_map] = STATE(3191), + [sym_unary_operator] = STATE(3191), + [sym_binary_operator] = STATE(3191), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3191), + [sym_call] = STATE(3191), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3191), + [sym_anonymous_function] = STATE(3191), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2371), + [sym_integer] = ACTIONS(2371), + [sym_float] = ACTIONS(2371), + [sym_char] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [774] = { + [sym__expression] = STATE(2107), + [sym_block] = STATE(2107), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2107), + [sym_nil] = STATE(2107), + [sym__atom] = STATE(2107), + [sym_quoted_atom] = STATE(2107), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2107), + [sym_charlist] = STATE(2107), + [sym_sigil] = STATE(2107), + [sym_list] = STATE(2107), + [sym_tuple] = STATE(2107), + [sym_bitstring] = STATE(2107), + [sym_map] = STATE(2107), + [sym_unary_operator] = STATE(2107), + [sym_binary_operator] = STATE(2107), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2107), + [sym_call] = STATE(2107), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2107), + [sym_anonymous_function] = STATE(2107), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2373), + [sym_integer] = ACTIONS(2373), + [sym_float] = ACTIONS(2373), + [sym_char] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [775] = { + [sym__expression] = STATE(3190), + [sym_block] = STATE(3190), + [sym__identifier] = STATE(54), + [sym_identifier] = STATE(54), + [sym_special_identifier] = STATE(54), + [sym_boolean] = STATE(3190), + [sym_nil] = STATE(3190), + [sym__atom] = STATE(3190), + [sym_quoted_atom] = STATE(3190), + [sym__quoted_i_double] = STATE(3015), + [sym__quoted_i_single] = STATE(3016), + [sym__quoted_i_heredoc_single] = STATE(3016), + [sym__quoted_i_heredoc_double] = STATE(3015), + [sym_string] = STATE(3190), + [sym_charlist] = STATE(3190), + [sym_sigil] = STATE(3190), + [sym_list] = STATE(3190), + [sym_tuple] = STATE(3190), + [sym_bitstring] = STATE(3190), + [sym_map] = STATE(3190), + [sym_unary_operator] = STATE(3190), + [sym_binary_operator] = STATE(3190), + [sym_operator_identifier] = STATE(4876), + [sym_dot] = STATE(3190), + [sym_call] = STATE(3190), + [sym__call_without_parentheses] = STATE(3037), + [sym__call_with_parentheses] = STATE(3037), + [sym__local_call_without_parentheses] = STATE(3037), + [sym__local_call_with_parentheses] = STATE(2645), + [sym__local_call_just_do_block] = STATE(3037), + [sym__remote_call_without_parentheses] = STATE(3037), + [sym__remote_call_with_parentheses] = STATE(2645), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(2645), + [sym__anonymous_dot] = STATE(4695), + [sym__double_call] = STATE(3039), + [sym_access_call] = STATE(3190), + [sym_anonymous_function] = STATE(3190), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_unused_identifier] = ACTIONS(17), + [anon_sym___MODULE__] = ACTIONS(19), + [anon_sym___DIR__] = ACTIONS(19), + [anon_sym___ENV__] = ACTIONS(19), + [anon_sym___CALLER__] = ACTIONS(19), + [anon_sym___STACKTRACE__] = ACTIONS(19), + [sym_alias] = ACTIONS(2375), + [sym_integer] = ACTIONS(2375), + [sym_float] = ACTIONS(2375), + [sym_char] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_nil] = ACTIONS(25), + [sym_atom] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(27), + [anon_sym_SQUOTE] = ACTIONS(29), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(31), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(33), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(41), + [anon_sym_LT_LT] = ACTIONS(43), + [anon_sym_PERCENT] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(49), + [anon_sym_not] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(53), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(55), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(59), + }, + [776] = { + [sym__expression] = STATE(3342), + [sym_block] = STATE(3342), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3342), + [sym_nil] = STATE(3342), + [sym__atom] = STATE(3342), + [sym_quoted_atom] = STATE(3342), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3342), + [sym_charlist] = STATE(3342), + [sym_sigil] = STATE(3342), + [sym_list] = STATE(3342), + [sym_tuple] = STATE(3342), + [sym_bitstring] = STATE(3342), + [sym_map] = STATE(3342), + [sym_unary_operator] = STATE(3342), + [sym_binary_operator] = STATE(3342), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3342), + [sym_call] = STATE(3342), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3342), + [sym_anonymous_function] = STATE(3342), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2377), + [sym_integer] = ACTIONS(2377), + [sym_float] = ACTIONS(2377), + [sym_char] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [777] = { + [sym__expression] = STATE(3369), + [sym_block] = STATE(3369), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3369), + [sym_nil] = STATE(3369), + [sym__atom] = STATE(3369), + [sym_quoted_atom] = STATE(3369), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3369), + [sym_charlist] = STATE(3369), + [sym_sigil] = STATE(3369), + [sym_list] = STATE(3369), + [sym_tuple] = STATE(3369), + [sym_bitstring] = STATE(3369), + [sym_map] = STATE(3369), + [sym_unary_operator] = STATE(3369), + [sym_binary_operator] = STATE(3369), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3369), + [sym_call] = STATE(3369), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3369), + [sym_anonymous_function] = STATE(3369), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2379), + [sym_integer] = ACTIONS(2379), + [sym_float] = ACTIONS(2379), + [sym_char] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [778] = { + [sym__expression] = STATE(2981), + [sym_block] = STATE(2981), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2981), + [sym_nil] = STATE(2981), + [sym__atom] = STATE(2981), + [sym_quoted_atom] = STATE(2981), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2981), + [sym_charlist] = STATE(2981), + [sym_sigil] = STATE(2981), + [sym_list] = STATE(2981), + [sym_tuple] = STATE(2981), + [sym_bitstring] = STATE(2981), + [sym_map] = STATE(2981), + [sym_unary_operator] = STATE(2981), + [sym_binary_operator] = STATE(2981), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2981), + [sym_call] = STATE(2981), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2981), + [sym_anonymous_function] = STATE(2981), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2381), + [sym_integer] = ACTIONS(2381), + [sym_float] = ACTIONS(2381), + [sym_char] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [779] = { + [sym__expression] = STATE(3382), + [sym_block] = STATE(3382), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3382), + [sym_nil] = STATE(3382), + [sym__atom] = STATE(3382), + [sym_quoted_atom] = STATE(3382), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3382), + [sym_charlist] = STATE(3382), + [sym_sigil] = STATE(3382), + [sym_list] = STATE(3382), + [sym_tuple] = STATE(3382), + [sym_bitstring] = STATE(3382), + [sym_map] = STATE(3382), + [sym_unary_operator] = STATE(3382), + [sym_binary_operator] = STATE(3382), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3382), + [sym_call] = STATE(3382), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3382), + [sym_anonymous_function] = STATE(3382), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2383), + [sym_integer] = ACTIONS(2383), + [sym_float] = ACTIONS(2383), + [sym_char] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [780] = { + [sym__expression] = STATE(1511), + [sym_block] = STATE(1511), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1511), + [sym_nil] = STATE(1511), + [sym__atom] = STATE(1511), + [sym_quoted_atom] = STATE(1511), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1511), + [sym_charlist] = STATE(1511), + [sym_sigil] = STATE(1511), + [sym_list] = STATE(1511), + [sym_tuple] = STATE(1511), + [sym_bitstring] = STATE(1511), + [sym_map] = STATE(1511), + [sym_unary_operator] = STATE(1511), + [sym_binary_operator] = STATE(1511), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1511), + [sym_call] = STATE(1511), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1511), + [sym_anonymous_function] = STATE(1511), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2385), + [sym_integer] = ACTIONS(2385), + [sym_float] = ACTIONS(2385), + [sym_char] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [781] = { + [sym__expression] = STATE(2976), + [sym_block] = STATE(2976), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2976), + [sym_nil] = STATE(2976), + [sym__atom] = STATE(2976), + [sym_quoted_atom] = STATE(2976), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2976), + [sym_charlist] = STATE(2976), + [sym_sigil] = STATE(2976), + [sym_list] = STATE(2976), + [sym_tuple] = STATE(2976), + [sym_bitstring] = STATE(2976), + [sym_map] = STATE(2976), + [sym_unary_operator] = STATE(2976), + [sym_binary_operator] = STATE(2976), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2976), + [sym_call] = STATE(2976), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2976), + [sym_anonymous_function] = STATE(2976), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2387), + [sym_integer] = ACTIONS(2387), + [sym_float] = ACTIONS(2387), + [sym_char] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [782] = { + [sym__expression] = STATE(3389), + [sym_block] = STATE(3389), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3389), + [sym_nil] = STATE(3389), + [sym__atom] = STATE(3389), + [sym_quoted_atom] = STATE(3389), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3389), + [sym_charlist] = STATE(3389), + [sym_sigil] = STATE(3389), + [sym_list] = STATE(3389), + [sym_tuple] = STATE(3389), + [sym_bitstring] = STATE(3389), + [sym_map] = STATE(3389), + [sym_unary_operator] = STATE(3389), + [sym_binary_operator] = STATE(3389), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3389), + [sym_call] = STATE(3389), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3389), + [sym_anonymous_function] = STATE(3389), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2389), + [sym_integer] = ACTIONS(2389), + [sym_float] = ACTIONS(2389), + [sym_char] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [783] = { + [sym__expression] = STATE(2975), + [sym_block] = STATE(2975), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2975), + [sym_nil] = STATE(2975), + [sym__atom] = STATE(2975), + [sym_quoted_atom] = STATE(2975), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2975), + [sym_charlist] = STATE(2975), + [sym_sigil] = STATE(2975), + [sym_list] = STATE(2975), + [sym_tuple] = STATE(2975), + [sym_bitstring] = STATE(2975), + [sym_map] = STATE(2975), + [sym_unary_operator] = STATE(2975), + [sym_binary_operator] = STATE(2975), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2975), + [sym_call] = STATE(2975), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2975), + [sym_anonymous_function] = STATE(2975), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2391), + [sym_integer] = ACTIONS(2391), + [sym_float] = ACTIONS(2391), + [sym_char] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [784] = { + [sym__expression] = STATE(2108), + [sym_block] = STATE(2108), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2108), + [sym_nil] = STATE(2108), + [sym__atom] = STATE(2108), + [sym_quoted_atom] = STATE(2108), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2108), + [sym_charlist] = STATE(2108), + [sym_sigil] = STATE(2108), + [sym_list] = STATE(2108), + [sym_tuple] = STATE(2108), + [sym_bitstring] = STATE(2108), + [sym_map] = STATE(2108), + [sym_unary_operator] = STATE(2108), + [sym_binary_operator] = STATE(2108), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2108), + [sym_call] = STATE(2108), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2108), + [sym_anonymous_function] = STATE(2108), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2393), + [sym_integer] = ACTIONS(2393), + [sym_float] = ACTIONS(2393), + [sym_char] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [785] = { + [sym__expression] = STATE(2109), + [sym_block] = STATE(2109), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2109), + [sym_nil] = STATE(2109), + [sym__atom] = STATE(2109), + [sym_quoted_atom] = STATE(2109), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2109), + [sym_charlist] = STATE(2109), + [sym_sigil] = STATE(2109), + [sym_list] = STATE(2109), + [sym_tuple] = STATE(2109), + [sym_bitstring] = STATE(2109), + [sym_map] = STATE(2109), + [sym_unary_operator] = STATE(2109), + [sym_binary_operator] = STATE(2109), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2109), + [sym_call] = STATE(2109), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2109), + [sym_anonymous_function] = STATE(2109), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2395), + [sym_integer] = ACTIONS(2395), + [sym_float] = ACTIONS(2395), + [sym_char] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [786] = { + [sym__expression] = STATE(2958), + [sym_block] = STATE(2958), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2958), + [sym_nil] = STATE(2958), + [sym__atom] = STATE(2958), + [sym_quoted_atom] = STATE(2958), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2958), + [sym_charlist] = STATE(2958), + [sym_sigil] = STATE(2958), + [sym_list] = STATE(2958), + [sym_tuple] = STATE(2958), + [sym_bitstring] = STATE(2958), + [sym_map] = STATE(2958), + [sym_unary_operator] = STATE(2958), + [sym_binary_operator] = STATE(2958), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2958), + [sym_call] = STATE(2958), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2958), + [sym_anonymous_function] = STATE(2958), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2397), + [sym_integer] = ACTIONS(2397), + [sym_float] = ACTIONS(2397), + [sym_char] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [787] = { + [sym__expression] = STATE(2111), + [sym_block] = STATE(2111), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2111), + [sym_nil] = STATE(2111), + [sym__atom] = STATE(2111), + [sym_quoted_atom] = STATE(2111), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2111), + [sym_charlist] = STATE(2111), + [sym_sigil] = STATE(2111), + [sym_list] = STATE(2111), + [sym_tuple] = STATE(2111), + [sym_bitstring] = STATE(2111), + [sym_map] = STATE(2111), + [sym_unary_operator] = STATE(2111), + [sym_binary_operator] = STATE(2111), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2111), + [sym_call] = STATE(2111), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2111), + [sym_anonymous_function] = STATE(2111), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2399), + [sym_integer] = ACTIONS(2399), + [sym_float] = ACTIONS(2399), + [sym_char] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [788] = { + [sym__expression] = STATE(2084), + [sym_block] = STATE(2084), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2084), + [sym_nil] = STATE(2084), + [sym__atom] = STATE(2084), + [sym_quoted_atom] = STATE(2084), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2084), + [sym_charlist] = STATE(2084), + [sym_sigil] = STATE(2084), + [sym_list] = STATE(2084), + [sym_tuple] = STATE(2084), + [sym_bitstring] = STATE(2084), + [sym_map] = STATE(2084), + [sym_unary_operator] = STATE(2084), + [sym_binary_operator] = STATE(2084), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2084), + [sym_call] = STATE(2084), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2084), + [sym_anonymous_function] = STATE(2084), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2401), + [sym_integer] = ACTIONS(2401), + [sym_float] = ACTIONS(2401), + [sym_char] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [789] = { + [sym__expression] = STATE(2955), + [sym_block] = STATE(2955), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2955), + [sym_nil] = STATE(2955), + [sym__atom] = STATE(2955), + [sym_quoted_atom] = STATE(2955), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2955), + [sym_charlist] = STATE(2955), + [sym_sigil] = STATE(2955), + [sym_list] = STATE(2955), + [sym_tuple] = STATE(2955), + [sym_bitstring] = STATE(2955), + [sym_map] = STATE(2955), + [sym_unary_operator] = STATE(2955), + [sym_binary_operator] = STATE(2955), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2955), + [sym_call] = STATE(2955), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2955), + [sym_anonymous_function] = STATE(2955), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2403), + [sym_integer] = ACTIONS(2403), + [sym_float] = ACTIONS(2403), + [sym_char] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [790] = { + [sym__expression] = STATE(3381), + [sym_block] = STATE(3381), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3381), + [sym_nil] = STATE(3381), + [sym__atom] = STATE(3381), + [sym_quoted_atom] = STATE(3381), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3381), + [sym_charlist] = STATE(3381), + [sym_sigil] = STATE(3381), + [sym_list] = STATE(3381), + [sym_tuple] = STATE(3381), + [sym_bitstring] = STATE(3381), + [sym_map] = STATE(3381), + [sym_unary_operator] = STATE(3381), + [sym_binary_operator] = STATE(3381), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3381), + [sym_call] = STATE(3381), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3381), + [sym_anonymous_function] = STATE(3381), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2405), + [sym_integer] = ACTIONS(2405), + [sym_float] = ACTIONS(2405), + [sym_char] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [791] = { + [sym__expression] = STATE(3035), + [sym_block] = STATE(3035), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3035), + [sym_nil] = STATE(3035), + [sym__atom] = STATE(3035), + [sym_quoted_atom] = STATE(3035), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3035), + [sym_charlist] = STATE(3035), + [sym_sigil] = STATE(3035), + [sym_list] = STATE(3035), + [sym_tuple] = STATE(3035), + [sym_bitstring] = STATE(3035), + [sym_map] = STATE(3035), + [sym_unary_operator] = STATE(3035), + [sym_binary_operator] = STATE(3035), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3035), + [sym_call] = STATE(3035), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3035), + [sym_anonymous_function] = STATE(3035), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2407), + [sym_integer] = ACTIONS(2407), + [sym_float] = ACTIONS(2407), + [sym_char] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [792] = { + [sym__expression] = STATE(2948), + [sym_block] = STATE(2948), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2948), + [sym_nil] = STATE(2948), + [sym__atom] = STATE(2948), + [sym_quoted_atom] = STATE(2948), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2948), + [sym_charlist] = STATE(2948), + [sym_sigil] = STATE(2948), + [sym_list] = STATE(2948), + [sym_tuple] = STATE(2948), + [sym_bitstring] = STATE(2948), + [sym_map] = STATE(2948), + [sym_unary_operator] = STATE(2948), + [sym_binary_operator] = STATE(2948), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2948), + [sym_call] = STATE(2948), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2948), + [sym_anonymous_function] = STATE(2948), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2409), + [sym_integer] = ACTIONS(2409), + [sym_float] = ACTIONS(2409), + [sym_char] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [793] = { + [sym__expression] = STATE(3034), + [sym_block] = STATE(3034), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3034), + [sym_nil] = STATE(3034), + [sym__atom] = STATE(3034), + [sym_quoted_atom] = STATE(3034), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3034), + [sym_charlist] = STATE(3034), + [sym_sigil] = STATE(3034), + [sym_list] = STATE(3034), + [sym_tuple] = STATE(3034), + [sym_bitstring] = STATE(3034), + [sym_map] = STATE(3034), + [sym_unary_operator] = STATE(3034), + [sym_binary_operator] = STATE(3034), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3034), + [sym_call] = STATE(3034), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3034), + [sym_anonymous_function] = STATE(3034), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2411), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2411), + [sym_char] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [794] = { + [sym__expression] = STATE(2944), + [sym_block] = STATE(2944), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2944), + [sym_nil] = STATE(2944), + [sym__atom] = STATE(2944), + [sym_quoted_atom] = STATE(2944), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2944), + [sym_charlist] = STATE(2944), + [sym_sigil] = STATE(2944), + [sym_list] = STATE(2944), + [sym_tuple] = STATE(2944), + [sym_bitstring] = STATE(2944), + [sym_map] = STATE(2944), + [sym_unary_operator] = STATE(2944), + [sym_binary_operator] = STATE(2944), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2944), + [sym_call] = STATE(2944), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2944), + [sym_anonymous_function] = STATE(2944), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2413), + [sym_integer] = ACTIONS(2413), + [sym_float] = ACTIONS(2413), + [sym_char] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [795] = { + [sym__expression] = STATE(2343), + [sym_block] = STATE(2343), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2343), + [sym_nil] = STATE(2343), + [sym__atom] = STATE(2343), + [sym_quoted_atom] = STATE(2343), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2343), + [sym_charlist] = STATE(2343), + [sym_sigil] = STATE(2343), + [sym_list] = STATE(2343), + [sym_tuple] = STATE(2343), + [sym_bitstring] = STATE(2343), + [sym_map] = STATE(2343), + [sym_unary_operator] = STATE(2343), + [sym_binary_operator] = STATE(2343), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2343), + [sym_call] = STATE(2343), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2343), + [sym_anonymous_function] = STATE(2343), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(1347), + [sym_integer] = ACTIONS(1347), + [sym_float] = ACTIONS(1347), + [sym_char] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [796] = { + [sym__expression] = STATE(2939), + [sym_block] = STATE(2939), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2939), + [sym_nil] = STATE(2939), + [sym__atom] = STATE(2939), + [sym_quoted_atom] = STATE(2939), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2939), + [sym_charlist] = STATE(2939), + [sym_sigil] = STATE(2939), + [sym_list] = STATE(2939), + [sym_tuple] = STATE(2939), + [sym_bitstring] = STATE(2939), + [sym_map] = STATE(2939), + [sym_unary_operator] = STATE(2939), + [sym_binary_operator] = STATE(2939), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2939), + [sym_call] = STATE(2939), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2939), + [sym_anonymous_function] = STATE(2939), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2415), + [sym_integer] = ACTIONS(2415), + [sym_float] = ACTIONS(2415), + [sym_char] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [797] = { + [sym__expression] = STATE(2599), + [sym_block] = STATE(2599), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(2599), + [sym_nil] = STATE(2599), + [sym__atom] = STATE(2599), + [sym_quoted_atom] = STATE(2599), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(2599), + [sym_charlist] = STATE(2599), + [sym_sigil] = STATE(2599), + [sym_list] = STATE(2599), + [sym_tuple] = STATE(2599), + [sym_bitstring] = STATE(2599), + [sym_map] = STATE(2599), + [sym_unary_operator] = STATE(2599), + [sym_binary_operator] = STATE(2599), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(2599), + [sym_call] = STATE(2599), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(2599), + [sym_anonymous_function] = STATE(2599), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2417), + [sym_integer] = ACTIONS(2417), + [sym_float] = ACTIONS(2417), + [sym_char] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [798] = { + [sym__expression] = STATE(2731), + [sym_block] = STATE(2731), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2731), + [sym_nil] = STATE(2731), + [sym__atom] = STATE(2731), + [sym_quoted_atom] = STATE(2731), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2731), + [sym_charlist] = STATE(2731), + [sym_sigil] = STATE(2731), + [sym_list] = STATE(2731), + [sym_tuple] = STATE(2731), + [sym_bitstring] = STATE(2731), + [sym_map] = STATE(2731), + [sym_unary_operator] = STATE(2731), + [sym_binary_operator] = STATE(2731), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2731), + [sym_call] = STATE(2731), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2731), + [sym_anonymous_function] = STATE(2731), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(1395), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1395), + [sym_char] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [799] = { + [sym__expression] = STATE(2938), + [sym_block] = STATE(2938), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2938), + [sym_nil] = STATE(2938), + [sym__atom] = STATE(2938), + [sym_quoted_atom] = STATE(2938), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2938), + [sym_charlist] = STATE(2938), + [sym_sigil] = STATE(2938), + [sym_list] = STATE(2938), + [sym_tuple] = STATE(2938), + [sym_bitstring] = STATE(2938), + [sym_map] = STATE(2938), + [sym_unary_operator] = STATE(2938), + [sym_binary_operator] = STATE(2938), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2938), + [sym_call] = STATE(2938), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2938), + [sym_anonymous_function] = STATE(2938), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2419), + [sym_integer] = ACTIONS(2419), + [sym_float] = ACTIONS(2419), + [sym_char] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [800] = { + [sym__expression] = STATE(2935), + [sym_block] = STATE(2935), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2935), + [sym_nil] = STATE(2935), + [sym__atom] = STATE(2935), + [sym_quoted_atom] = STATE(2935), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2935), + [sym_charlist] = STATE(2935), + [sym_sigil] = STATE(2935), + [sym_list] = STATE(2935), + [sym_tuple] = STATE(2935), + [sym_bitstring] = STATE(2935), + [sym_map] = STATE(2935), + [sym_unary_operator] = STATE(2935), + [sym_binary_operator] = STATE(2935), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2935), + [sym_call] = STATE(2935), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2935), + [sym_anonymous_function] = STATE(2935), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2421), + [sym_integer] = ACTIONS(2421), + [sym_float] = ACTIONS(2421), + [sym_char] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [801] = { + [sym__expression] = STATE(2932), + [sym_block] = STATE(2932), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2932), + [sym_nil] = STATE(2932), + [sym__atom] = STATE(2932), + [sym_quoted_atom] = STATE(2932), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2932), + [sym_charlist] = STATE(2932), + [sym_sigil] = STATE(2932), + [sym_list] = STATE(2932), + [sym_tuple] = STATE(2932), + [sym_bitstring] = STATE(2932), + [sym_map] = STATE(2932), + [sym_unary_operator] = STATE(2932), + [sym_binary_operator] = STATE(2932), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2932), + [sym_call] = STATE(2932), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2932), + [sym_anonymous_function] = STATE(2932), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2423), + [sym_integer] = ACTIONS(2423), + [sym_float] = ACTIONS(2423), + [sym_char] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [802] = { + [sym__expression] = STATE(2930), + [sym_block] = STATE(2930), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2930), + [sym_nil] = STATE(2930), + [sym__atom] = STATE(2930), + [sym_quoted_atom] = STATE(2930), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2930), + [sym_charlist] = STATE(2930), + [sym_sigil] = STATE(2930), + [sym_list] = STATE(2930), + [sym_tuple] = STATE(2930), + [sym_bitstring] = STATE(2930), + [sym_map] = STATE(2930), + [sym_unary_operator] = STATE(2930), + [sym_binary_operator] = STATE(2930), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2930), + [sym_call] = STATE(2930), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2930), + [sym_anonymous_function] = STATE(2930), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2425), + [sym_integer] = ACTIONS(2425), + [sym_float] = ACTIONS(2425), + [sym_char] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [803] = { + [sym__expression] = STATE(2929), + [sym_block] = STATE(2929), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2929), + [sym_nil] = STATE(2929), + [sym__atom] = STATE(2929), + [sym_quoted_atom] = STATE(2929), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2929), + [sym_charlist] = STATE(2929), + [sym_sigil] = STATE(2929), + [sym_list] = STATE(2929), + [sym_tuple] = STATE(2929), + [sym_bitstring] = STATE(2929), + [sym_map] = STATE(2929), + [sym_unary_operator] = STATE(2929), + [sym_binary_operator] = STATE(2929), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2929), + [sym_call] = STATE(2929), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2929), + [sym_anonymous_function] = STATE(2929), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2427), + [sym_integer] = ACTIONS(2427), + [sym_float] = ACTIONS(2427), + [sym_char] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [804] = { + [sym__expression] = STATE(2927), + [sym_block] = STATE(2927), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2927), + [sym_nil] = STATE(2927), + [sym__atom] = STATE(2927), + [sym_quoted_atom] = STATE(2927), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2927), + [sym_charlist] = STATE(2927), + [sym_sigil] = STATE(2927), + [sym_list] = STATE(2927), + [sym_tuple] = STATE(2927), + [sym_bitstring] = STATE(2927), + [sym_map] = STATE(2927), + [sym_unary_operator] = STATE(2927), + [sym_binary_operator] = STATE(2927), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2927), + [sym_call] = STATE(2927), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2927), + [sym_anonymous_function] = STATE(2927), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2429), + [sym_integer] = ACTIONS(2429), + [sym_float] = ACTIONS(2429), + [sym_char] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [805] = { + [sym__expression] = STATE(3033), + [sym_block] = STATE(3033), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3033), + [sym_nil] = STATE(3033), + [sym__atom] = STATE(3033), + [sym_quoted_atom] = STATE(3033), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3033), + [sym_charlist] = STATE(3033), + [sym_sigil] = STATE(3033), + [sym_list] = STATE(3033), + [sym_tuple] = STATE(3033), + [sym_bitstring] = STATE(3033), + [sym_map] = STATE(3033), + [sym_unary_operator] = STATE(3033), + [sym_binary_operator] = STATE(3033), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3033), + [sym_call] = STATE(3033), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3033), + [sym_anonymous_function] = STATE(3033), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2431), + [sym_integer] = ACTIONS(2431), + [sym_float] = ACTIONS(2431), + [sym_char] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [806] = { + [sym__expression] = STATE(3032), + [sym_block] = STATE(3032), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3032), + [sym_nil] = STATE(3032), + [sym__atom] = STATE(3032), + [sym_quoted_atom] = STATE(3032), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3032), + [sym_charlist] = STATE(3032), + [sym_sigil] = STATE(3032), + [sym_list] = STATE(3032), + [sym_tuple] = STATE(3032), + [sym_bitstring] = STATE(3032), + [sym_map] = STATE(3032), + [sym_unary_operator] = STATE(3032), + [sym_binary_operator] = STATE(3032), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3032), + [sym_call] = STATE(3032), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3032), + [sym_anonymous_function] = STATE(3032), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2433), + [sym_integer] = ACTIONS(2433), + [sym_float] = ACTIONS(2433), + [sym_char] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [807] = { + [sym__expression] = STATE(3031), + [sym_block] = STATE(3031), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3031), + [sym_nil] = STATE(3031), + [sym__atom] = STATE(3031), + [sym_quoted_atom] = STATE(3031), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3031), + [sym_charlist] = STATE(3031), + [sym_sigil] = STATE(3031), + [sym_list] = STATE(3031), + [sym_tuple] = STATE(3031), + [sym_bitstring] = STATE(3031), + [sym_map] = STATE(3031), + [sym_unary_operator] = STATE(3031), + [sym_binary_operator] = STATE(3031), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3031), + [sym_call] = STATE(3031), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3031), + [sym_anonymous_function] = STATE(3031), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2435), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2435), + [sym_char] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [808] = { + [sym__expression] = STATE(3030), + [sym_block] = STATE(3030), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3030), + [sym_nil] = STATE(3030), + [sym__atom] = STATE(3030), + [sym_quoted_atom] = STATE(3030), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3030), + [sym_charlist] = STATE(3030), + [sym_sigil] = STATE(3030), + [sym_list] = STATE(3030), + [sym_tuple] = STATE(3030), + [sym_bitstring] = STATE(3030), + [sym_map] = STATE(3030), + [sym_unary_operator] = STATE(3030), + [sym_binary_operator] = STATE(3030), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3030), + [sym_call] = STATE(3030), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3030), + [sym_anonymous_function] = STATE(3030), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2437), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2437), + [sym_char] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [809] = { + [sym__expression] = STATE(3383), + [sym_block] = STATE(3383), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3383), + [sym_nil] = STATE(3383), + [sym__atom] = STATE(3383), + [sym_quoted_atom] = STATE(3383), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3383), + [sym_charlist] = STATE(3383), + [sym_sigil] = STATE(3383), + [sym_list] = STATE(3383), + [sym_tuple] = STATE(3383), + [sym_bitstring] = STATE(3383), + [sym_map] = STATE(3383), + [sym_unary_operator] = STATE(3383), + [sym_binary_operator] = STATE(3383), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3383), + [sym_call] = STATE(3383), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3383), + [sym_anonymous_function] = STATE(3383), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2439), + [sym_integer] = ACTIONS(2439), + [sym_float] = ACTIONS(2439), + [sym_char] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [810] = { + [sym__expression] = STATE(1176), + [sym_block] = STATE(1176), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(1176), + [sym_nil] = STATE(1176), + [sym__atom] = STATE(1176), + [sym_quoted_atom] = STATE(1176), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1176), + [sym_charlist] = STATE(1176), + [sym_sigil] = STATE(1176), + [sym_list] = STATE(1176), + [sym_tuple] = STATE(1176), + [sym_bitstring] = STATE(1176), + [sym_map] = STATE(1176), + [sym_unary_operator] = STATE(1176), + [sym_binary_operator] = STATE(1176), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1176), + [sym_call] = STATE(1176), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1176), + [sym_anonymous_function] = STATE(1176), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2353), + [sym_integer] = ACTIONS(2353), + [sym_float] = ACTIONS(2353), + [sym_char] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [811] = { + [sym__expression] = STATE(2115), + [sym_block] = STATE(2115), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2115), + [sym_nil] = STATE(2115), + [sym__atom] = STATE(2115), + [sym_quoted_atom] = STATE(2115), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2115), + [sym_charlist] = STATE(2115), + [sym_sigil] = STATE(2115), + [sym_list] = STATE(2115), + [sym_tuple] = STATE(2115), + [sym_bitstring] = STATE(2115), + [sym_map] = STATE(2115), + [sym_unary_operator] = STATE(2115), + [sym_binary_operator] = STATE(2115), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2115), + [sym_call] = STATE(2115), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2115), + [sym_anonymous_function] = STATE(2115), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2441), + [sym_integer] = ACTIONS(2441), + [sym_float] = ACTIONS(2441), + [sym_char] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [812] = { + [sym__expression] = STATE(3388), + [sym_block] = STATE(3388), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3388), + [sym_nil] = STATE(3388), + [sym__atom] = STATE(3388), + [sym_quoted_atom] = STATE(3388), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3388), + [sym_charlist] = STATE(3388), + [sym_sigil] = STATE(3388), + [sym_list] = STATE(3388), + [sym_tuple] = STATE(3388), + [sym_bitstring] = STATE(3388), + [sym_map] = STATE(3388), + [sym_unary_operator] = STATE(3388), + [sym_binary_operator] = STATE(3388), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3388), + [sym_call] = STATE(3388), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3388), + [sym_anonymous_function] = STATE(3388), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2443), + [sym_integer] = ACTIONS(2443), + [sym_float] = ACTIONS(2443), + [sym_char] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [813] = { + [sym__expression] = STATE(2592), + [sym_block] = STATE(2592), + [sym__identifier] = STATE(47), + [sym_identifier] = STATE(47), + [sym_special_identifier] = STATE(47), + [sym_boolean] = STATE(2592), + [sym_nil] = STATE(2592), + [sym__atom] = STATE(2592), + [sym_quoted_atom] = STATE(2592), + [sym__quoted_i_double] = STATE(2454), + [sym__quoted_i_single] = STATE(2452), + [sym__quoted_i_heredoc_single] = STATE(2452), + [sym__quoted_i_heredoc_double] = STATE(2454), + [sym_string] = STATE(2592), + [sym_charlist] = STATE(2592), + [sym_sigil] = STATE(2592), + [sym_list] = STATE(2592), + [sym_tuple] = STATE(2592), + [sym_bitstring] = STATE(2592), + [sym_map] = STATE(2592), + [sym_unary_operator] = STATE(2592), + [sym_binary_operator] = STATE(2592), + [sym_operator_identifier] = STATE(4815), + [sym_dot] = STATE(2592), + [sym_call] = STATE(2592), + [sym__call_without_parentheses] = STATE(2451), + [sym__call_with_parentheses] = STATE(2451), + [sym__local_call_without_parentheses] = STATE(2451), + [sym__local_call_with_parentheses] = STATE(1830), + [sym__local_call_just_do_block] = STATE(2451), + [sym__remote_call_without_parentheses] = STATE(2451), + [sym__remote_call_with_parentheses] = STATE(1830), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1830), + [sym__anonymous_dot] = STATE(4719), + [sym__double_call] = STATE(2450), + [sym_access_call] = STATE(2592), + [sym_anonymous_function] = STATE(2592), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(501), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(505), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(2445), + [sym_integer] = ACTIONS(2445), + [sym_float] = ACTIONS(2445), + [sym_char] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(511), + [anon_sym_false] = ACTIONS(511), + [anon_sym_nil] = ACTIONS(513), + [sym_atom] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(517), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(519), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(521), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(525), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(527), + [anon_sym_LT_LT] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(535), + [anon_sym_PLUS] = ACTIONS(537), + [anon_sym_DASH] = ACTIONS(537), + [anon_sym_BANG] = ACTIONS(537), + [anon_sym_CARET] = ACTIONS(537), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(537), + [anon_sym_not] = ACTIONS(537), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(543), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(549), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(551), + }, + [814] = { + [sym__expression] = STATE(3392), + [sym_block] = STATE(3392), + [sym__identifier] = STATE(65), + [sym_identifier] = STATE(65), + [sym_special_identifier] = STATE(65), + [sym_boolean] = STATE(3392), + [sym_nil] = STATE(3392), + [sym__atom] = STATE(3392), + [sym_quoted_atom] = STATE(3392), + [sym__quoted_i_double] = STATE(3254), + [sym__quoted_i_single] = STATE(3253), + [sym__quoted_i_heredoc_single] = STATE(3253), + [sym__quoted_i_heredoc_double] = STATE(3254), + [sym_string] = STATE(3392), + [sym_charlist] = STATE(3392), + [sym_sigil] = STATE(3392), + [sym_list] = STATE(3392), + [sym_tuple] = STATE(3392), + [sym_bitstring] = STATE(3392), + [sym_map] = STATE(3392), + [sym_unary_operator] = STATE(3392), + [sym_binary_operator] = STATE(3392), + [sym_operator_identifier] = STATE(4807), + [sym_dot] = STATE(3392), + [sym_call] = STATE(3392), + [sym__call_without_parentheses] = STATE(3252), + [sym__call_with_parentheses] = STATE(3252), + [sym__local_call_without_parentheses] = STATE(3252), + [sym__local_call_with_parentheses] = STATE(2594), + [sym__local_call_just_do_block] = STATE(3252), + [sym__remote_call_without_parentheses] = STATE(3252), + [sym__remote_call_with_parentheses] = STATE(2594), + [sym__remote_dot] = STATE(56), + [sym__anonymous_call] = STATE(2594), + [sym__anonymous_dot] = STATE(4736), + [sym__double_call] = STATE(3251), + [sym_access_call] = STATE(3392), + [sym_anonymous_function] = STATE(3392), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1361), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(828), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2447), + [sym_integer] = ACTIONS(2447), + [sym_float] = ACTIONS(2447), + [sym_char] = ACTIONS(2447), + [anon_sym_true] = ACTIONS(834), + [anon_sym_false] = ACTIONS(834), + [anon_sym_nil] = ACTIONS(836), + [sym_atom] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(838), + [anon_sym_SQUOTE] = ACTIONS(840), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(842), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LBRACK] = ACTIONS(848), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_PERCENT] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_CARET] = ACTIONS(858), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(858), + [anon_sym_not] = ACTIONS(858), + [anon_sym_AT] = ACTIONS(860), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(864), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(866), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(868), + }, + [815] = { + [sym__expression] = STATE(3374), + [sym_block] = STATE(3374), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3374), + [sym_nil] = STATE(3374), + [sym__atom] = STATE(3374), + [sym_quoted_atom] = STATE(3374), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3374), + [sym_charlist] = STATE(3374), + [sym_sigil] = STATE(3374), + [sym_list] = STATE(3374), + [sym_tuple] = STATE(3374), + [sym_bitstring] = STATE(3374), + [sym_map] = STATE(3374), + [sym_unary_operator] = STATE(3374), + [sym_binary_operator] = STATE(3374), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3374), + [sym_call] = STATE(3374), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3374), + [sym_anonymous_function] = STATE(3374), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2449), + [sym_integer] = ACTIONS(2449), + [sym_float] = ACTIONS(2449), + [sym_char] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [816] = { + [sym__expression] = STATE(1843), + [sym_block] = STATE(1843), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1843), + [sym_nil] = STATE(1843), + [sym__atom] = STATE(1843), + [sym_quoted_atom] = STATE(1843), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1843), + [sym_charlist] = STATE(1843), + [sym_sigil] = STATE(1843), + [sym_list] = STATE(1843), + [sym_tuple] = STATE(1843), + [sym_bitstring] = STATE(1843), + [sym_map] = STATE(1843), + [sym_unary_operator] = STATE(1843), + [sym_binary_operator] = STATE(1843), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1843), + [sym_call] = STATE(1843), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1843), + [sym_anonymous_function] = STATE(1843), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2167), + [sym_integer] = ACTIONS(2167), + [sym_float] = ACTIONS(2167), + [sym_char] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [817] = { + [sym__expression] = STATE(1924), + [sym_block] = STATE(1924), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1924), + [sym_nil] = STATE(1924), + [sym__atom] = STATE(1924), + [sym_quoted_atom] = STATE(1924), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1924), + [sym_charlist] = STATE(1924), + [sym_sigil] = STATE(1924), + [sym_list] = STATE(1924), + [sym_tuple] = STATE(1924), + [sym_bitstring] = STATE(1924), + [sym_map] = STATE(1924), + [sym_unary_operator] = STATE(1924), + [sym_binary_operator] = STATE(1924), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1924), + [sym_call] = STATE(1924), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1924), + [sym_anonymous_function] = STATE(1924), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2451), + [sym_integer] = ACTIONS(2451), + [sym_float] = ACTIONS(2451), + [sym_char] = ACTIONS(2451), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [818] = { + [sym__expression] = STATE(2488), + [sym_block] = STATE(2488), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2488), + [sym_nil] = STATE(2488), + [sym__atom] = STATE(2488), + [sym_quoted_atom] = STATE(2488), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2488), + [sym_charlist] = STATE(2488), + [sym_sigil] = STATE(2488), + [sym_list] = STATE(2488), + [sym_tuple] = STATE(2488), + [sym_bitstring] = STATE(2488), + [sym_map] = STATE(2488), + [sym_unary_operator] = STATE(2488), + [sym_binary_operator] = STATE(2488), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2488), + [sym_call] = STATE(2488), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2488), + [sym_anonymous_function] = STATE(2488), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2453), + [sym_integer] = ACTIONS(2453), + [sym_float] = ACTIONS(2453), + [sym_char] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [819] = { + [sym__expression] = STATE(2489), + [sym_block] = STATE(2489), + [sym__identifier] = STATE(57), + [sym_identifier] = STATE(57), + [sym_special_identifier] = STATE(57), + [sym_boolean] = STATE(2489), + [sym_nil] = STATE(2489), + [sym__atom] = STATE(2489), + [sym_quoted_atom] = STATE(2489), + [sym__quoted_i_double] = STATE(2509), + [sym__quoted_i_single] = STATE(2508), + [sym__quoted_i_heredoc_single] = STATE(2508), + [sym__quoted_i_heredoc_double] = STATE(2509), + [sym_string] = STATE(2489), + [sym_charlist] = STATE(2489), + [sym_sigil] = STATE(2489), + [sym_list] = STATE(2489), + [sym_tuple] = STATE(2489), + [sym_bitstring] = STATE(2489), + [sym_map] = STATE(2489), + [sym_unary_operator] = STATE(2489), + [sym_binary_operator] = STATE(2489), + [sym_operator_identifier] = STATE(4855), + [sym_dot] = STATE(2489), + [sym_call] = STATE(2489), + [sym__call_without_parentheses] = STATE(2507), + [sym__call_with_parentheses] = STATE(2507), + [sym__local_call_without_parentheses] = STATE(2507), + [sym__local_call_with_parentheses] = STATE(1857), + [sym__local_call_just_do_block] = STATE(2507), + [sym__remote_call_without_parentheses] = STATE(2507), + [sym__remote_call_with_parentheses] = STATE(1857), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(1857), + [sym__anonymous_dot] = STATE(4699), + [sym__double_call] = STATE(2506), + [sym_access_call] = STATE(2489), + [sym_anonymous_function] = STATE(2489), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(556), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(558), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2455), + [sym_integer] = ACTIONS(2455), + [sym_float] = ACTIONS(2455), + [sym_char] = ACTIONS(2455), + [anon_sym_true] = ACTIONS(562), + [anon_sym_false] = ACTIONS(562), + [anon_sym_nil] = ACTIONS(564), + [sym_atom] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(568), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(570), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(572), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(578), + [anon_sym_LT_LT] = ACTIONS(582), + [anon_sym_PERCENT] = ACTIONS(584), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_BANG] = ACTIONS(588), + [anon_sym_CARET] = ACTIONS(588), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(588), + [anon_sym_not] = ACTIONS(588), + [anon_sym_AT] = ACTIONS(590), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(594), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(600), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(602), + }, + [820] = { + [sym__expression] = STATE(1237), + [sym_block] = STATE(1237), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(1237), + [sym_nil] = STATE(1237), + [sym__atom] = STATE(1237), + [sym_quoted_atom] = STATE(1237), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1237), + [sym_charlist] = STATE(1237), + [sym_sigil] = STATE(1237), + [sym_list] = STATE(1237), + [sym_tuple] = STATE(1237), + [sym_bitstring] = STATE(1237), + [sym_map] = STATE(1237), + [sym_unary_operator] = STATE(1237), + [sym_binary_operator] = STATE(1237), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1237), + [sym_call] = STATE(1237), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1237), + [sym_anonymous_function] = STATE(1237), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2363), + [sym_integer] = ACTIONS(2363), + [sym_float] = ACTIONS(2363), + [sym_char] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [821] = { + [sym__expression] = STATE(2116), + [sym_block] = STATE(2116), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2116), + [sym_nil] = STATE(2116), + [sym__atom] = STATE(2116), + [sym_quoted_atom] = STATE(2116), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2116), + [sym_charlist] = STATE(2116), + [sym_sigil] = STATE(2116), + [sym_list] = STATE(2116), + [sym_tuple] = STATE(2116), + [sym_bitstring] = STATE(2116), + [sym_map] = STATE(2116), + [sym_unary_operator] = STATE(2116), + [sym_binary_operator] = STATE(2116), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2116), + [sym_call] = STATE(2116), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2116), + [sym_anonymous_function] = STATE(2116), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2457), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2457), + [sym_char] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [822] = { + [sym__expression] = STATE(2511), + [sym_block] = STATE(2511), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2511), + [sym_nil] = STATE(2511), + [sym__atom] = STATE(2511), + [sym_quoted_atom] = STATE(2511), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2511), + [sym_charlist] = STATE(2511), + [sym_sigil] = STATE(2511), + [sym_list] = STATE(2511), + [sym_tuple] = STATE(2511), + [sym_bitstring] = STATE(2511), + [sym_map] = STATE(2511), + [sym_unary_operator] = STATE(2511), + [sym_binary_operator] = STATE(2511), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2511), + [sym_call] = STATE(2511), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2511), + [sym_anonymous_function] = STATE(2511), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(1425), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1425), + [sym_char] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [823] = { + [sym__expression] = STATE(3322), + [sym_block] = STATE(3322), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3322), + [sym_nil] = STATE(3322), + [sym__atom] = STATE(3322), + [sym_quoted_atom] = STATE(3322), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3322), + [sym_charlist] = STATE(3322), + [sym_sigil] = STATE(3322), + [sym_list] = STATE(3322), + [sym_tuple] = STATE(3322), + [sym_bitstring] = STATE(3322), + [sym_map] = STATE(3322), + [sym_unary_operator] = STATE(3322), + [sym_binary_operator] = STATE(3322), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3322), + [sym_call] = STATE(3322), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3322), + [sym_anonymous_function] = STATE(3322), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(1527), + [sym_integer] = ACTIONS(1527), + [sym_float] = ACTIONS(1527), + [sym_char] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [824] = { + [sym__expression] = STATE(1813), + [sym_block] = STATE(1813), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1813), + [sym_nil] = STATE(1813), + [sym__atom] = STATE(1813), + [sym_quoted_atom] = STATE(1813), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1813), + [sym_charlist] = STATE(1813), + [sym_sigil] = STATE(1813), + [sym_list] = STATE(1813), + [sym_tuple] = STATE(1813), + [sym_bitstring] = STATE(1813), + [sym_map] = STATE(1813), + [sym_unary_operator] = STATE(1813), + [sym_binary_operator] = STATE(1813), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1813), + [sym_call] = STATE(1813), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1813), + [sym_anonymous_function] = STATE(1813), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2459), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2459), + [sym_char] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2459), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [825] = { + [sym__expression] = STATE(1925), + [sym_block] = STATE(1925), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1925), + [sym_nil] = STATE(1925), + [sym__atom] = STATE(1925), + [sym_quoted_atom] = STATE(1925), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1925), + [sym_charlist] = STATE(1925), + [sym_sigil] = STATE(1925), + [sym_list] = STATE(1925), + [sym_tuple] = STATE(1925), + [sym_bitstring] = STATE(1925), + [sym_map] = STATE(1925), + [sym_unary_operator] = STATE(1925), + [sym_binary_operator] = STATE(1925), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1925), + [sym_call] = STATE(1925), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1925), + [sym_anonymous_function] = STATE(1925), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2461), + [sym_integer] = ACTIONS(2461), + [sym_float] = ACTIONS(2461), + [sym_char] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [826] = { + [sym__expression] = STATE(1926), + [sym_block] = STATE(1926), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1926), + [sym_nil] = STATE(1926), + [sym__atom] = STATE(1926), + [sym_quoted_atom] = STATE(1926), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1926), + [sym_charlist] = STATE(1926), + [sym_sigil] = STATE(1926), + [sym_list] = STATE(1926), + [sym_tuple] = STATE(1926), + [sym_bitstring] = STATE(1926), + [sym_map] = STATE(1926), + [sym_unary_operator] = STATE(1926), + [sym_binary_operator] = STATE(1926), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1926), + [sym_call] = STATE(1926), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1926), + [sym_anonymous_function] = STATE(1926), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2463), + [sym_integer] = ACTIONS(2463), + [sym_float] = ACTIONS(2463), + [sym_char] = ACTIONS(2463), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [827] = { + [sym__expression] = STATE(1944), + [sym_block] = STATE(1944), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1944), + [sym_nil] = STATE(1944), + [sym__atom] = STATE(1944), + [sym_quoted_atom] = STATE(1944), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1944), + [sym_charlist] = STATE(1944), + [sym_sigil] = STATE(1944), + [sym_list] = STATE(1944), + [sym_tuple] = STATE(1944), + [sym_bitstring] = STATE(1944), + [sym_map] = STATE(1944), + [sym_unary_operator] = STATE(1944), + [sym_binary_operator] = STATE(1944), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1944), + [sym_call] = STATE(1944), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1944), + [sym_anonymous_function] = STATE(1944), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2465), + [sym_integer] = ACTIONS(2465), + [sym_float] = ACTIONS(2465), + [sym_char] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [828] = { + [sym__expression] = STATE(3029), + [sym_block] = STATE(3029), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3029), + [sym_nil] = STATE(3029), + [sym__atom] = STATE(3029), + [sym_quoted_atom] = STATE(3029), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3029), + [sym_charlist] = STATE(3029), + [sym_sigil] = STATE(3029), + [sym_list] = STATE(3029), + [sym_tuple] = STATE(3029), + [sym_bitstring] = STATE(3029), + [sym_map] = STATE(3029), + [sym_unary_operator] = STATE(3029), + [sym_binary_operator] = STATE(3029), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3029), + [sym_call] = STATE(3029), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3029), + [sym_anonymous_function] = STATE(3029), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2467), + [sym_integer] = ACTIONS(2467), + [sym_float] = ACTIONS(2467), + [sym_char] = ACTIONS(2467), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [829] = { + [sym__expression] = STATE(1945), + [sym_block] = STATE(1945), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1945), + [sym_nil] = STATE(1945), + [sym__atom] = STATE(1945), + [sym_quoted_atom] = STATE(1945), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1945), + [sym_charlist] = STATE(1945), + [sym_sigil] = STATE(1945), + [sym_list] = STATE(1945), + [sym_tuple] = STATE(1945), + [sym_bitstring] = STATE(1945), + [sym_map] = STATE(1945), + [sym_unary_operator] = STATE(1945), + [sym_binary_operator] = STATE(1945), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1945), + [sym_call] = STATE(1945), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1945), + [sym_anonymous_function] = STATE(1945), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2469), + [sym_integer] = ACTIONS(2469), + [sym_float] = ACTIONS(2469), + [sym_char] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [830] = { + [sym__expression] = STATE(3028), + [sym_block] = STATE(3028), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3028), + [sym_nil] = STATE(3028), + [sym__atom] = STATE(3028), + [sym_quoted_atom] = STATE(3028), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3028), + [sym_charlist] = STATE(3028), + [sym_sigil] = STATE(3028), + [sym_list] = STATE(3028), + [sym_tuple] = STATE(3028), + [sym_bitstring] = STATE(3028), + [sym_map] = STATE(3028), + [sym_unary_operator] = STATE(3028), + [sym_binary_operator] = STATE(3028), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3028), + [sym_call] = STATE(3028), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3028), + [sym_anonymous_function] = STATE(3028), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2471), + [sym_integer] = ACTIONS(2471), + [sym_float] = ACTIONS(2471), + [sym_char] = ACTIONS(2471), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [831] = { [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__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3027), + [sym_nil] = STATE(3027), + [sym__atom] = STATE(3027), + [sym_quoted_atom] = STATE(3027), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), [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_unary_operator] = STATE(3027), + [sym_binary_operator] = STATE(3027), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = 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__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2473), + [sym_integer] = ACTIONS(2473), + [sym_float] = ACTIONS(2473), + [sym_char] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [832] = { + [sym__expression] = STATE(3101), + [sym_block] = STATE(3101), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3101), + [sym_nil] = STATE(3101), + [sym__atom] = STATE(3101), + [sym_quoted_atom] = STATE(3101), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3101), + [sym_charlist] = STATE(3101), + [sym_sigil] = STATE(3101), + [sym_list] = STATE(3101), + [sym_tuple] = STATE(3101), + [sym_bitstring] = STATE(3101), + [sym_map] = STATE(3101), + [sym_unary_operator] = STATE(3101), + [sym_binary_operator] = STATE(3101), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3101), + [sym_call] = STATE(3101), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3101), + [sym_anonymous_function] = STATE(3101), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2475), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2475), + [sym_char] = ACTIONS(2475), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [833] = { + [sym__expression] = STATE(1946), + [sym_block] = STATE(1946), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1946), + [sym_nil] = STATE(1946), + [sym__atom] = STATE(1946), + [sym_quoted_atom] = STATE(1946), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1946), + [sym_charlist] = STATE(1946), + [sym_sigil] = STATE(1946), + [sym_list] = STATE(1946), + [sym_tuple] = STATE(1946), + [sym_bitstring] = STATE(1946), + [sym_map] = STATE(1946), + [sym_unary_operator] = STATE(1946), + [sym_binary_operator] = STATE(1946), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1946), + [sym_call] = STATE(1946), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1946), + [sym_anonymous_function] = STATE(1946), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2477), + [sym_integer] = ACTIONS(2477), + [sym_float] = ACTIONS(2477), + [sym_char] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [834] = { + [sym__expression] = STATE(2865), + [sym_block] = STATE(2865), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(2865), + [sym_nil] = STATE(2865), + [sym__atom] = STATE(2865), + [sym_quoted_atom] = STATE(2865), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(2865), + [sym_charlist] = STATE(2865), + [sym_sigil] = STATE(2865), + [sym_list] = STATE(2865), + [sym_tuple] = STATE(2865), + [sym_bitstring] = STATE(2865), + [sym_map] = STATE(2865), + [sym_unary_operator] = STATE(2865), + [sym_binary_operator] = STATE(2865), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(2865), + [sym_call] = STATE(2865), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(2865), + [sym_anonymous_function] = STATE(2865), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2479), + [sym_integer] = ACTIONS(2479), + [sym_float] = ACTIONS(2479), + [sym_char] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [835] = { + [sym__expression] = STATE(1947), + [sym_block] = STATE(1947), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1947), + [sym_nil] = STATE(1947), + [sym__atom] = STATE(1947), + [sym_quoted_atom] = STATE(1947), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1947), + [sym_charlist] = STATE(1947), + [sym_sigil] = STATE(1947), + [sym_list] = STATE(1947), [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), + [sym_bitstring] = STATE(1947), + [sym_map] = STATE(1947), + [sym_unary_operator] = STATE(1947), + [sym_binary_operator] = STATE(1947), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1947), + [sym_call] = STATE(1947), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1947), + [sym_anonymous_function] = STATE(1947), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2481), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2481), + [sym_char] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [836] = { + [sym__expression] = STATE(2934), + [sym_block] = STATE(2934), + [sym__identifier] = STATE(67), + [sym_identifier] = STATE(67), + [sym_special_identifier] = STATE(67), + [sym_boolean] = STATE(2934), + [sym_nil] = STATE(2934), + [sym__atom] = STATE(2934), + [sym_quoted_atom] = STATE(2934), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2934), + [sym_charlist] = STATE(2934), + [sym_sigil] = STATE(2934), + [sym_list] = STATE(2934), + [sym_tuple] = STATE(2934), + [sym_bitstring] = STATE(2934), + [sym_map] = STATE(2934), + [sym_unary_operator] = STATE(2934), + [sym_binary_operator] = STATE(2934), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2934), + [sym_call] = STATE(2934), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(68), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2934), + [sym_anonymous_function] = STATE(2934), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(670), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2483), + [sym_integer] = ACTIONS(2483), + [sym_float] = ACTIONS(2483), + [sym_char] = ACTIONS(2483), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2483), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(684), + [anon_sym_DASH] = ACTIONS(684), + [anon_sym_BANG] = ACTIONS(684), + [anon_sym_CARET] = ACTIONS(684), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(684), + [anon_sym_not] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(688), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [837] = { + [sym__expression] = STATE(1688), + [sym_block] = STATE(1688), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1688), + [sym_nil] = STATE(1688), + [sym__atom] = STATE(1688), + [sym_quoted_atom] = STATE(1688), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1688), + [sym_charlist] = STATE(1688), + [sym_sigil] = STATE(1688), + [sym_list] = STATE(1688), + [sym_tuple] = STATE(1688), + [sym_bitstring] = STATE(1688), + [sym_map] = STATE(1688), + [sym_unary_operator] = STATE(1688), + [sym_binary_operator] = STATE(1688), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1688), + [sym_call] = STATE(1688), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1688), + [sym_anonymous_function] = STATE(1688), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1919), + [sym_integer] = ACTIONS(1919), + [sym_float] = ACTIONS(1919), + [sym_char] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [838] = { + [sym__expression] = STATE(1780), + [sym_block] = STATE(1780), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1780), + [sym_nil] = STATE(1780), + [sym__atom] = STATE(1780), + [sym_quoted_atom] = STATE(1780), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1780), + [sym_charlist] = STATE(1780), + [sym_sigil] = STATE(1780), + [sym_list] = STATE(1780), + [sym_tuple] = STATE(1780), + [sym_bitstring] = STATE(1780), + [sym_map] = STATE(1780), + [sym_unary_operator] = STATE(1780), + [sym_binary_operator] = STATE(1780), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1780), + [sym_call] = STATE(1780), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1780), + [sym_anonymous_function] = STATE(1780), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2111), + [sym_integer] = ACTIONS(2111), + [sym_float] = ACTIONS(2111), + [sym_char] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [839] = { + [sym__expression] = STATE(1781), + [sym_block] = STATE(1781), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1781), + [sym_nil] = STATE(1781), + [sym__atom] = STATE(1781), + [sym_quoted_atom] = STATE(1781), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1781), + [sym_charlist] = STATE(1781), + [sym_sigil] = STATE(1781), + [sym_list] = STATE(1781), + [sym_tuple] = STATE(1781), + [sym_bitstring] = STATE(1781), + [sym_map] = STATE(1781), + [sym_unary_operator] = STATE(1781), + [sym_binary_operator] = STATE(1781), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1781), + [sym_call] = STATE(1781), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1781), + [sym_anonymous_function] = STATE(1781), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2113), + [sym_integer] = ACTIONS(2113), + [sym_float] = ACTIONS(2113), + [sym_char] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [840] = { + [sym__expression] = STATE(1948), + [sym_block] = STATE(1948), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1948), + [sym_nil] = STATE(1948), + [sym__atom] = STATE(1948), + [sym_quoted_atom] = STATE(1948), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1948), + [sym_charlist] = STATE(1948), + [sym_sigil] = STATE(1948), + [sym_list] = STATE(1948), + [sym_tuple] = STATE(1948), + [sym_bitstring] = STATE(1948), + [sym_map] = STATE(1948), + [sym_unary_operator] = STATE(1948), + [sym_binary_operator] = STATE(1948), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1948), + [sym_call] = STATE(1948), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1948), + [sym_anonymous_function] = STATE(1948), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2485), + [sym_integer] = ACTIONS(2485), + [sym_float] = ACTIONS(2485), + [sym_char] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [841] = { + [sym__expression] = STATE(2008), + [sym_block] = STATE(2008), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2008), + [sym_nil] = STATE(2008), + [sym__atom] = STATE(2008), + [sym_quoted_atom] = STATE(2008), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2008), + [sym_charlist] = STATE(2008), + [sym_sigil] = STATE(2008), + [sym_list] = STATE(2008), + [sym_tuple] = STATE(2008), + [sym_bitstring] = STATE(2008), + [sym_map] = STATE(2008), + [sym_unary_operator] = STATE(2008), + [sym_binary_operator] = STATE(2008), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2008), + [sym_call] = STATE(2008), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2008), + [sym_anonymous_function] = STATE(2008), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(1371), + [sym_integer] = ACTIONS(1371), + [sym_float] = ACTIONS(1371), + [sym_char] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [842] = { + [sym__expression] = STATE(1949), + [sym_block] = STATE(1949), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1949), + [sym_nil] = STATE(1949), + [sym__atom] = STATE(1949), + [sym_quoted_atom] = STATE(1949), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1949), + [sym_charlist] = STATE(1949), + [sym_sigil] = STATE(1949), + [sym_list] = STATE(1949), + [sym_tuple] = STATE(1949), + [sym_bitstring] = STATE(1949), + [sym_map] = STATE(1949), + [sym_unary_operator] = STATE(1949), + [sym_binary_operator] = STATE(1949), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1949), + [sym_call] = STATE(1949), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1949), + [sym_anonymous_function] = STATE(1949), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2487), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2487), + [sym_char] = ACTIONS(2487), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [843] = { + [sym__expression] = STATE(1950), + [sym_block] = STATE(1950), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1950), + [sym_nil] = STATE(1950), + [sym__atom] = STATE(1950), + [sym_quoted_atom] = STATE(1950), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1950), + [sym_charlist] = STATE(1950), + [sym_sigil] = STATE(1950), + [sym_list] = STATE(1950), + [sym_tuple] = STATE(1950), + [sym_bitstring] = STATE(1950), + [sym_map] = STATE(1950), + [sym_unary_operator] = STATE(1950), + [sym_binary_operator] = STATE(1950), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1950), + [sym_call] = STATE(1950), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1950), + [sym_anonymous_function] = STATE(1950), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2489), + [sym_integer] = ACTIONS(2489), + [sym_float] = ACTIONS(2489), + [sym_char] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [844] = { + [sym__expression] = STATE(1952), + [sym_block] = STATE(1952), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1952), + [sym_nil] = STATE(1952), + [sym__atom] = STATE(1952), + [sym_quoted_atom] = STATE(1952), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1952), + [sym_charlist] = STATE(1952), + [sym_sigil] = STATE(1952), + [sym_list] = STATE(1952), + [sym_tuple] = STATE(1952), + [sym_bitstring] = STATE(1952), + [sym_map] = STATE(1952), + [sym_unary_operator] = STATE(1952), + [sym_binary_operator] = STATE(1952), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1952), + [sym_call] = STATE(1952), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1952), + [sym_anonymous_function] = STATE(1952), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2491), + [sym_integer] = ACTIONS(2491), + [sym_float] = ACTIONS(2491), + [sym_char] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [845] = { + [sym__expression] = STATE(2073), + [sym_block] = STATE(2073), + [sym__identifier] = STATE(42), + [sym_identifier] = STATE(42), + [sym_special_identifier] = STATE(42), + [sym_boolean] = STATE(2073), + [sym_nil] = STATE(2073), + [sym__atom] = STATE(2073), + [sym_quoted_atom] = STATE(2073), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(2073), + [sym_charlist] = STATE(2073), + [sym_sigil] = STATE(2073), + [sym_list] = STATE(2073), + [sym_tuple] = STATE(2073), + [sym_bitstring] = STATE(2073), + [sym_map] = STATE(2073), + [sym_unary_operator] = STATE(2073), + [sym_binary_operator] = STATE(2073), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(2073), + [sym_call] = STATE(2073), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(50), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(2073), + [sym_anonymous_function] = STATE(2073), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(458), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2493), + [sym_integer] = ACTIONS(2493), + [sym_float] = ACTIONS(2493), + [sym_char] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(464), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(468), + [anon_sym_PLUS] = ACTIONS(473), + [anon_sym_DASH] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(473), + [anon_sym_CARET] = ACTIONS(473), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(473), + [anon_sym_not] = ACTIONS(473), + [anon_sym_AT] = ACTIONS(475), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(477), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [846] = { + [sym__expression] = STATE(1825), + [sym_block] = STATE(1825), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1825), + [sym_nil] = STATE(1825), + [sym__atom] = STATE(1825), + [sym_quoted_atom] = STATE(1825), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1825), + [sym_charlist] = STATE(1825), + [sym_sigil] = STATE(1825), + [sym_list] = STATE(1825), + [sym_tuple] = STATE(1825), + [sym_bitstring] = STATE(1825), + [sym_map] = STATE(1825), + [sym_unary_operator] = STATE(1825), + [sym_binary_operator] = STATE(1825), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1825), + [sym_call] = STATE(1825), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1825), + [sym_anonymous_function] = STATE(1825), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2495), + [sym_integer] = ACTIONS(2495), + [sym_float] = ACTIONS(2495), + [sym_char] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [847] = { + [sym__expression] = STATE(1888), + [sym_block] = STATE(1888), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1888), + [sym_nil] = STATE(1888), + [sym__atom] = STATE(1888), + [sym_quoted_atom] = STATE(1888), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1888), + [sym_charlist] = STATE(1888), + [sym_sigil] = STATE(1888), + [sym_list] = STATE(1888), + [sym_tuple] = STATE(1888), + [sym_bitstring] = STATE(1888), + [sym_map] = STATE(1888), + [sym_unary_operator] = STATE(1888), + [sym_binary_operator] = STATE(1888), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1888), + [sym_call] = STATE(1888), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1888), + [sym_anonymous_function] = STATE(1888), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2497), + [sym_integer] = ACTIONS(2497), + [sym_float] = ACTIONS(2497), + [sym_char] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [848] = { + [sym__expression] = STATE(1889), + [sym_block] = STATE(1889), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1889), + [sym_nil] = STATE(1889), + [sym__atom] = STATE(1889), + [sym_quoted_atom] = STATE(1889), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1889), + [sym_charlist] = STATE(1889), + [sym_sigil] = STATE(1889), + [sym_list] = STATE(1889), + [sym_tuple] = STATE(1889), + [sym_bitstring] = STATE(1889), + [sym_map] = STATE(1889), + [sym_unary_operator] = STATE(1889), + [sym_binary_operator] = STATE(1889), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1889), + [sym_call] = STATE(1889), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1889), + [sym_anonymous_function] = STATE(1889), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2499), + [sym_integer] = ACTIONS(2499), + [sym_float] = ACTIONS(2499), + [sym_char] = ACTIONS(2499), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [849] = { + [sym__expression] = STATE(1890), + [sym_block] = STATE(1890), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1890), + [sym_nil] = STATE(1890), + [sym__atom] = STATE(1890), + [sym_quoted_atom] = STATE(1890), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1890), + [sym_charlist] = STATE(1890), + [sym_sigil] = STATE(1890), + [sym_list] = STATE(1890), + [sym_tuple] = STATE(1890), + [sym_bitstring] = STATE(1890), + [sym_map] = STATE(1890), + [sym_unary_operator] = STATE(1890), + [sym_binary_operator] = STATE(1890), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1890), + [sym_call] = STATE(1890), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1890), + [sym_anonymous_function] = STATE(1890), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2501), + [sym_integer] = ACTIONS(2501), + [sym_float] = ACTIONS(2501), + [sym_char] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [850] = { + [sym__expression] = STATE(1892), + [sym_block] = STATE(1892), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1892), + [sym_nil] = STATE(1892), + [sym__atom] = STATE(1892), + [sym_quoted_atom] = STATE(1892), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1892), + [sym_charlist] = STATE(1892), + [sym_sigil] = STATE(1892), + [sym_list] = STATE(1892), + [sym_tuple] = STATE(1892), + [sym_bitstring] = STATE(1892), + [sym_map] = STATE(1892), + [sym_unary_operator] = STATE(1892), + [sym_binary_operator] = STATE(1892), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1892), + [sym_call] = STATE(1892), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1892), + [sym_anonymous_function] = STATE(1892), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2503), + [sym_integer] = ACTIONS(2503), + [sym_float] = ACTIONS(2503), + [sym_char] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2503), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [851] = { + [sym__expression] = STATE(1893), + [sym_block] = STATE(1893), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1893), + [sym_nil] = STATE(1893), + [sym__atom] = STATE(1893), + [sym_quoted_atom] = STATE(1893), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1893), + [sym_charlist] = STATE(1893), + [sym_sigil] = STATE(1893), + [sym_list] = STATE(1893), + [sym_tuple] = STATE(1893), + [sym_bitstring] = STATE(1893), + [sym_map] = STATE(1893), + [sym_unary_operator] = STATE(1893), + [sym_binary_operator] = STATE(1893), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1893), + [sym_call] = STATE(1893), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1893), + [sym_anonymous_function] = STATE(1893), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2505), + [sym_integer] = ACTIONS(2505), + [sym_float] = ACTIONS(2505), + [sym_char] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [852] = { + [sym__expression] = STATE(1894), + [sym_block] = STATE(1894), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1894), + [sym_nil] = STATE(1894), + [sym__atom] = STATE(1894), + [sym_quoted_atom] = STATE(1894), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1894), + [sym_charlist] = STATE(1894), + [sym_sigil] = STATE(1894), + [sym_list] = STATE(1894), + [sym_tuple] = STATE(1894), + [sym_bitstring] = STATE(1894), + [sym_map] = STATE(1894), + [sym_unary_operator] = STATE(1894), + [sym_binary_operator] = STATE(1894), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1894), + [sym_call] = STATE(1894), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1894), + [sym_anonymous_function] = STATE(1894), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2507), + [sym_integer] = ACTIONS(2507), + [sym_float] = ACTIONS(2507), + [sym_char] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [853] = { + [sym__expression] = STATE(1895), + [sym_block] = STATE(1895), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1895), + [sym_nil] = STATE(1895), + [sym__atom] = STATE(1895), + [sym_quoted_atom] = STATE(1895), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1895), + [sym_charlist] = STATE(1895), + [sym_sigil] = STATE(1895), + [sym_list] = STATE(1895), + [sym_tuple] = STATE(1895), + [sym_bitstring] = STATE(1895), + [sym_map] = STATE(1895), + [sym_unary_operator] = STATE(1895), + [sym_binary_operator] = STATE(1895), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1895), + [sym_call] = STATE(1895), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1895), + [sym_anonymous_function] = STATE(1895), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2509), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2509), + [sym_char] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [854] = { + [sym__expression] = STATE(1953), + [sym_block] = STATE(1953), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1953), + [sym_nil] = STATE(1953), + [sym__atom] = STATE(1953), + [sym_quoted_atom] = STATE(1953), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1953), + [sym_charlist] = STATE(1953), + [sym_sigil] = STATE(1953), + [sym_list] = STATE(1953), + [sym_tuple] = STATE(1953), + [sym_bitstring] = STATE(1953), + [sym_map] = STATE(1953), + [sym_unary_operator] = STATE(1953), + [sym_binary_operator] = STATE(1953), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1953), + [sym_call] = STATE(1953), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1953), + [sym_anonymous_function] = STATE(1953), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2511), + [sym_integer] = ACTIONS(2511), + [sym_float] = ACTIONS(2511), + [sym_char] = ACTIONS(2511), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [855] = { + [sym__expression] = STATE(1954), + [sym_block] = STATE(1954), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1954), + [sym_nil] = STATE(1954), + [sym__atom] = STATE(1954), + [sym_quoted_atom] = STATE(1954), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1954), + [sym_charlist] = STATE(1954), + [sym_sigil] = STATE(1954), + [sym_list] = STATE(1954), + [sym_tuple] = STATE(1954), + [sym_bitstring] = STATE(1954), + [sym_map] = STATE(1954), + [sym_unary_operator] = STATE(1954), + [sym_binary_operator] = STATE(1954), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1954), + [sym_call] = STATE(1954), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1954), + [sym_anonymous_function] = STATE(1954), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2513), + [sym_integer] = ACTIONS(2513), + [sym_float] = ACTIONS(2513), + [sym_char] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [856] = { + [sym__expression] = STATE(1896), + [sym_block] = STATE(1896), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1896), + [sym_nil] = STATE(1896), + [sym__atom] = STATE(1896), + [sym_quoted_atom] = STATE(1896), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1896), + [sym_charlist] = STATE(1896), + [sym_sigil] = STATE(1896), + [sym_list] = STATE(1896), + [sym_tuple] = STATE(1896), + [sym_bitstring] = STATE(1896), + [sym_map] = STATE(1896), + [sym_unary_operator] = STATE(1896), + [sym_binary_operator] = STATE(1896), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1896), + [sym_call] = STATE(1896), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1896), + [sym_anonymous_function] = STATE(1896), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2515), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2515), + [sym_char] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [857] = { + [sym__expression] = STATE(1897), + [sym_block] = STATE(1897), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1897), + [sym_nil] = STATE(1897), + [sym__atom] = STATE(1897), + [sym_quoted_atom] = STATE(1897), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1897), + [sym_charlist] = STATE(1897), + [sym_sigil] = STATE(1897), + [sym_list] = STATE(1897), + [sym_tuple] = STATE(1897), + [sym_bitstring] = STATE(1897), + [sym_map] = STATE(1897), + [sym_unary_operator] = STATE(1897), + [sym_binary_operator] = STATE(1897), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1897), + [sym_call] = STATE(1897), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1897), + [sym_anonymous_function] = STATE(1897), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2517), + [sym_integer] = ACTIONS(2517), + [sym_float] = ACTIONS(2517), + [sym_char] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [858] = { + [sym__expression] = STATE(1900), + [sym_block] = STATE(1900), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1900), + [sym_nil] = STATE(1900), + [sym__atom] = STATE(1900), + [sym_quoted_atom] = STATE(1900), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1900), + [sym_charlist] = STATE(1900), + [sym_sigil] = STATE(1900), + [sym_list] = STATE(1900), + [sym_tuple] = STATE(1900), + [sym_bitstring] = STATE(1900), + [sym_map] = STATE(1900), + [sym_unary_operator] = STATE(1900), + [sym_binary_operator] = STATE(1900), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1900), + [sym_call] = STATE(1900), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1900), + [sym_anonymous_function] = STATE(1900), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2519), + [sym_integer] = ACTIONS(2519), + [sym_float] = ACTIONS(2519), + [sym_char] = ACTIONS(2519), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [859] = { + [sym__expression] = STATE(1380), + [sym_block] = STATE(1380), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1380), + [sym_nil] = STATE(1380), + [sym__atom] = STATE(1380), + [sym_quoted_atom] = STATE(1380), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1380), + [sym_charlist] = STATE(1380), + [sym_sigil] = STATE(1380), + [sym_list] = STATE(1380), + [sym_tuple] = STATE(1380), + [sym_bitstring] = STATE(1380), + [sym_map] = STATE(1380), + [sym_unary_operator] = STATE(1380), + [sym_binary_operator] = STATE(1380), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1380), + [sym_call] = STATE(1380), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1380), + [sym_anonymous_function] = STATE(1380), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1507), + [sym_integer] = ACTIONS(1507), + [sym_float] = ACTIONS(1507), + [sym_char] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [860] = { + [sym__expression] = STATE(3385), + [sym_block] = STATE(3385), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3385), + [sym_nil] = STATE(3385), + [sym__atom] = STATE(3385), + [sym_quoted_atom] = STATE(3385), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3385), + [sym_charlist] = STATE(3385), + [sym_sigil] = STATE(3385), + [sym_list] = STATE(3385), + [sym_tuple] = STATE(3385), + [sym_bitstring] = STATE(3385), + [sym_map] = STATE(3385), + [sym_unary_operator] = STATE(3385), + [sym_binary_operator] = STATE(3385), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3385), + [sym_call] = STATE(3385), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3385), + [sym_anonymous_function] = STATE(3385), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2521), + [sym_integer] = ACTIONS(2521), + [sym_float] = ACTIONS(2521), + [sym_char] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [861] = { + [sym__expression] = STATE(3391), + [sym_block] = STATE(3391), + [sym__identifier] = STATE(45), + [sym_identifier] = STATE(45), + [sym_special_identifier] = STATE(45), + [sym_boolean] = STATE(3391), + [sym_nil] = STATE(3391), + [sym__atom] = STATE(3391), + [sym_quoted_atom] = STATE(3391), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3391), + [sym_charlist] = STATE(3391), + [sym_sigil] = STATE(3391), + [sym_list] = STATE(3391), + [sym_tuple] = STATE(3391), + [sym_bitstring] = STATE(3391), + [sym_map] = STATE(3391), + [sym_unary_operator] = STATE(3391), + [sym_binary_operator] = STATE(3391), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3391), + [sym_call] = STATE(3391), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3391), + [sym_anonymous_function] = STATE(3391), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1071), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2523), + [sym_integer] = ACTIONS(2523), + [sym_float] = ACTIONS(2523), + [sym_char] = ACTIONS(2523), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1099), + [anon_sym_PLUS] = ACTIONS(1101), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_CARET] = ACTIONS(1101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1101), + [anon_sym_not] = ACTIONS(1101), + [anon_sym_AT] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1107), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [862] = { + [sym__expression] = STATE(1860), + [sym_block] = STATE(1860), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1860), + [sym_nil] = STATE(1860), + [sym__atom] = STATE(1860), + [sym_quoted_atom] = STATE(1860), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1860), + [sym_charlist] = STATE(1860), + [sym_sigil] = STATE(1860), + [sym_list] = STATE(1860), + [sym_tuple] = STATE(1860), + [sym_bitstring] = STATE(1860), + [sym_map] = STATE(1860), + [sym_unary_operator] = STATE(1860), + [sym_binary_operator] = STATE(1860), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1860), + [sym_call] = STATE(1860), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1860), + [sym_anonymous_function] = STATE(1860), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2525), + [sym_integer] = ACTIONS(2525), + [sym_float] = ACTIONS(2525), + [sym_char] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [863] = { + [sym__expression] = STATE(1809), + [sym_block] = STATE(1809), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1809), + [sym_nil] = STATE(1809), + [sym__atom] = STATE(1809), + [sym_quoted_atom] = STATE(1809), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1809), + [sym_charlist] = STATE(1809), + [sym_sigil] = STATE(1809), + [sym_list] = STATE(1809), + [sym_tuple] = STATE(1809), + [sym_bitstring] = STATE(1809), + [sym_map] = STATE(1809), + [sym_unary_operator] = STATE(1809), + [sym_binary_operator] = STATE(1809), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1809), + [sym_call] = STATE(1809), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1809), + [sym_anonymous_function] = STATE(1809), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2117), + [sym_integer] = ACTIONS(2117), + [sym_float] = ACTIONS(2117), + [sym_char] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [864] = { + [sym__expression] = STATE(1810), + [sym_block] = STATE(1810), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1810), + [sym_nil] = STATE(1810), + [sym__atom] = STATE(1810), + [sym_quoted_atom] = STATE(1810), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1810), + [sym_charlist] = STATE(1810), + [sym_sigil] = STATE(1810), + [sym_list] = STATE(1810), + [sym_tuple] = STATE(1810), + [sym_bitstring] = STATE(1810), + [sym_map] = STATE(1810), + [sym_unary_operator] = STATE(1810), + [sym_binary_operator] = STATE(1810), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1810), + [sym_call] = STATE(1810), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1810), + [sym_anonymous_function] = STATE(1810), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2119), + [sym_integer] = ACTIONS(2119), + [sym_float] = ACTIONS(2119), + [sym_char] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [865] = { + [sym__expression] = STATE(2899), + [sym_block] = STATE(2899), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2899), + [sym_nil] = STATE(2899), + [sym__atom] = STATE(2899), + [sym_quoted_atom] = STATE(2899), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2899), + [sym_charlist] = STATE(2899), + [sym_sigil] = STATE(2899), + [sym_list] = STATE(2899), + [sym_tuple] = STATE(2899), + [sym_bitstring] = STATE(2899), + [sym_map] = STATE(2899), + [sym_unary_operator] = STATE(2899), + [sym_binary_operator] = STATE(2899), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2899), + [sym_call] = STATE(2899), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2899), + [sym_anonymous_function] = STATE(2899), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2527), + [sym_integer] = ACTIONS(2527), + [sym_float] = ACTIONS(2527), + [sym_char] = ACTIONS(2527), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [866] = { + [sym__expression] = STATE(3297), + [sym_block] = STATE(3297), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3297), + [sym_nil] = STATE(3297), + [sym__atom] = STATE(3297), + [sym_quoted_atom] = STATE(3297), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3297), + [sym_charlist] = STATE(3297), + [sym_sigil] = STATE(3297), + [sym_list] = STATE(3297), + [sym_tuple] = STATE(3297), + [sym_bitstring] = STATE(3297), + [sym_map] = STATE(3297), + [sym_unary_operator] = STATE(3297), + [sym_binary_operator] = STATE(3297), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3297), + [sym_call] = STATE(3297), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3297), + [sym_anonymous_function] = STATE(3297), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2529), + [sym_integer] = ACTIONS(2529), + [sym_float] = ACTIONS(2529), + [sym_char] = ACTIONS(2529), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [867] = { + [sym__expression] = STATE(3314), + [sym_block] = STATE(3314), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3314), + [sym_nil] = STATE(3314), + [sym__atom] = STATE(3314), + [sym_quoted_atom] = STATE(3314), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3314), + [sym_charlist] = STATE(3314), + [sym_sigil] = STATE(3314), + [sym_list] = STATE(3314), + [sym_tuple] = STATE(3314), + [sym_bitstring] = STATE(3314), + [sym_map] = STATE(3314), + [sym_unary_operator] = STATE(3314), + [sym_binary_operator] = STATE(3314), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3314), + [sym_call] = STATE(3314), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3314), + [sym_anonymous_function] = STATE(3314), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2531), + [sym_integer] = ACTIONS(2531), + [sym_float] = ACTIONS(2531), + [sym_char] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [868] = { + [sym__expression] = STATE(2922), + [sym_block] = STATE(2922), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2922), + [sym_nil] = STATE(2922), + [sym__atom] = STATE(2922), + [sym_quoted_atom] = STATE(2922), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2922), + [sym_charlist] = STATE(2922), + [sym_sigil] = STATE(2922), + [sym_list] = STATE(2922), + [sym_tuple] = STATE(2922), + [sym_bitstring] = STATE(2922), + [sym_map] = STATE(2922), + [sym_unary_operator] = STATE(2922), + [sym_binary_operator] = STATE(2922), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2922), + [sym_call] = STATE(2922), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2922), + [sym_anonymous_function] = STATE(2922), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2533), + [sym_integer] = ACTIONS(2533), + [sym_float] = ACTIONS(2533), + [sym_char] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [869] = { + [sym__expression] = STATE(2600), + [sym_block] = STATE(2600), + [sym__identifier] = STATE(44), + [sym_identifier] = STATE(44), + [sym_special_identifier] = STATE(44), + [sym_boolean] = STATE(2600), + [sym_nil] = STATE(2600), + [sym__atom] = STATE(2600), + [sym_quoted_atom] = STATE(2600), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(2600), + [sym_charlist] = STATE(2600), + [sym_sigil] = STATE(2600), + [sym_list] = STATE(2600), + [sym_tuple] = STATE(2600), + [sym_bitstring] = STATE(2600), + [sym_map] = STATE(2600), + [sym_unary_operator] = STATE(2600), + [sym_binary_operator] = STATE(2600), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(2600), + [sym_call] = STATE(2600), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(41), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(2600), + [sym_anonymous_function] = STATE(2600), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(438), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2535), + [sym_integer] = ACTIONS(2535), + [sym_float] = ACTIONS(2535), + [sym_char] = ACTIONS(2535), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(448), + [anon_sym_PLUS] = ACTIONS(450), + [anon_sym_DASH] = ACTIONS(450), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_CARET] = ACTIONS(450), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(450), + [anon_sym_not] = ACTIONS(450), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(454), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [870] = { + [sym__expression] = STATE(1956), + [sym_block] = STATE(1956), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1956), + [sym_nil] = STATE(1956), + [sym__atom] = STATE(1956), + [sym_quoted_atom] = STATE(1956), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1956), + [sym_charlist] = STATE(1956), + [sym_sigil] = STATE(1956), + [sym_list] = STATE(1956), + [sym_tuple] = STATE(1956), + [sym_bitstring] = STATE(1956), + [sym_map] = STATE(1956), + [sym_unary_operator] = STATE(1956), + [sym_binary_operator] = STATE(1956), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1956), + [sym_call] = STATE(1956), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1956), + [sym_anonymous_function] = STATE(1956), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2537), + [sym_integer] = ACTIONS(2537), + [sym_float] = ACTIONS(2537), + [sym_char] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [871] = { + [sym__expression] = STATE(1668), + [sym_block] = STATE(1668), + [sym__identifier] = STATE(31), + [sym_identifier] = STATE(31), + [sym_special_identifier] = STATE(31), + [sym_boolean] = STATE(1668), + [sym_nil] = STATE(1668), + [sym__atom] = STATE(1668), + [sym_quoted_atom] = STATE(1668), + [sym__quoted_i_double] = STATE(1433), + [sym__quoted_i_single] = STATE(1400), + [sym__quoted_i_heredoc_single] = STATE(1400), + [sym__quoted_i_heredoc_double] = STATE(1433), + [sym_string] = STATE(1668), + [sym_charlist] = STATE(1668), + [sym_sigil] = STATE(1668), + [sym_list] = STATE(1668), + [sym_tuple] = STATE(1668), + [sym_bitstring] = STATE(1668), + [sym_map] = STATE(1668), + [sym_unary_operator] = STATE(1668), + [sym_binary_operator] = STATE(1668), + [sym_operator_identifier] = STATE(4820), + [sym_dot] = STATE(1668), + [sym_call] = STATE(1668), + [sym__call_without_parentheses] = STATE(1434), + [sym__call_with_parentheses] = STATE(1434), + [sym__local_call_without_parentheses] = STATE(1434), + [sym__local_call_with_parentheses] = STATE(1228), + [sym__local_call_just_do_block] = STATE(1434), + [sym__remote_call_without_parentheses] = STATE(1434), + [sym__remote_call_with_parentheses] = STATE(1228), + [sym__remote_dot] = STATE(14), + [sym__anonymous_call] = STATE(1228), + [sym__anonymous_dot] = STATE(4720), + [sym__double_call] = STATE(1435), + [sym_access_call] = STATE(1668), + [sym_anonymous_function] = STATE(1668), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1349), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(69), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2539), + [sym_integer] = ACTIONS(2539), + [sym_float] = ACTIONS(2539), + [sym_char] = ACTIONS(2539), + [anon_sym_true] = ACTIONS(75), + [anon_sym_false] = ACTIONS(75), + [anon_sym_nil] = ACTIONS(77), + [sym_atom] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(83), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(85), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(89), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(91), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(97), + [anon_sym_AMP] = ACTIONS(99), + [anon_sym_PLUS] = ACTIONS(101), + [anon_sym_DASH] = ACTIONS(101), + [anon_sym_BANG] = ACTIONS(101), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(101), + [anon_sym_not] = ACTIONS(101), + [anon_sym_AT] = ACTIONS(103), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(115), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(119), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(121), + }, + [872] = { + [sym__expression] = STATE(1904), + [sym_block] = STATE(1904), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1904), + [sym_nil] = STATE(1904), + [sym__atom] = STATE(1904), + [sym_quoted_atom] = STATE(1904), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1904), + [sym_charlist] = STATE(1904), + [sym_sigil] = STATE(1904), + [sym_list] = STATE(1904), + [sym_tuple] = STATE(1904), + [sym_bitstring] = STATE(1904), + [sym_map] = STATE(1904), + [sym_unary_operator] = STATE(1904), + [sym_binary_operator] = STATE(1904), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1904), + [sym_call] = STATE(1904), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1904), + [sym_anonymous_function] = STATE(1904), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2541), + [sym_integer] = ACTIONS(2541), + [sym_float] = ACTIONS(2541), + [sym_char] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [873] = { + [sym__expression] = STATE(2924), + [sym_block] = STATE(2924), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2924), + [sym_nil] = STATE(2924), + [sym__atom] = STATE(2924), + [sym_quoted_atom] = STATE(2924), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2924), + [sym_charlist] = STATE(2924), + [sym_sigil] = STATE(2924), + [sym_list] = STATE(2924), + [sym_tuple] = STATE(2924), + [sym_bitstring] = STATE(2924), + [sym_map] = STATE(2924), + [sym_unary_operator] = STATE(2924), + [sym_binary_operator] = STATE(2924), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2924), + [sym_call] = STATE(2924), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2924), + [sym_anonymous_function] = STATE(2924), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2543), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2543), + [sym_char] = ACTIONS(2543), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [874] = { + [sym__expression] = STATE(1524), + [sym_block] = STATE(1524), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1524), + [sym_nil] = STATE(1524), + [sym__atom] = STATE(1524), + [sym_quoted_atom] = STATE(1524), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1524), + [sym_charlist] = STATE(1524), + [sym_sigil] = STATE(1524), + [sym_list] = STATE(1524), + [sym_tuple] = STATE(1524), + [sym_bitstring] = STATE(1524), + [sym_map] = STATE(1524), + [sym_unary_operator] = STATE(1524), + [sym_binary_operator] = STATE(1524), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1524), + [sym_call] = STATE(1524), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1524), + [sym_anonymous_function] = STATE(1524), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2545), + [sym_integer] = ACTIONS(2545), + [sym_float] = ACTIONS(2545), + [sym_char] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [875] = { + [sym__expression] = STATE(2095), + [sym_block] = STATE(2095), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(2095), + [sym_nil] = STATE(2095), + [sym__atom] = STATE(2095), + [sym_quoted_atom] = STATE(2095), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2095), + [sym_charlist] = STATE(2095), + [sym_sigil] = STATE(2095), + [sym_list] = STATE(2095), + [sym_tuple] = STATE(2095), + [sym_bitstring] = STATE(2095), + [sym_map] = STATE(2095), + [sym_unary_operator] = STATE(2095), + [sym_binary_operator] = STATE(2095), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2095), + [sym_call] = STATE(2095), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2095), + [sym_anonymous_function] = STATE(2095), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(1359), + [sym_integer] = ACTIONS(1359), + [sym_float] = ACTIONS(1359), + [sym_char] = ACTIONS(1359), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [876] = { + [sym__expression] = STATE(3022), + [sym_block] = STATE(3022), + [sym__identifier] = STATE(63), + [sym_identifier] = STATE(63), + [sym_special_identifier] = STATE(63), + [sym_boolean] = STATE(3022), + [sym_nil] = STATE(3022), + [sym__atom] = STATE(3022), + [sym_quoted_atom] = STATE(3022), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3022), + [sym_charlist] = STATE(3022), + [sym_sigil] = STATE(3022), + [sym_list] = STATE(3022), + [sym_tuple] = STATE(3022), + [sym_bitstring] = STATE(3022), + [sym_map] = STATE(3022), + [sym_unary_operator] = STATE(3022), + [sym_binary_operator] = STATE(3022), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3022), + [sym_call] = STATE(3022), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(48), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3022), + [sym_anonymous_function] = STATE(3022), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(1403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [sym_unused_identifier] = ACTIONS(1405), + [anon_sym___MODULE__] = ACTIONS(1407), + [anon_sym___DIR__] = ACTIONS(1407), + [anon_sym___ENV__] = ACTIONS(1407), + [anon_sym___CALLER__] = ACTIONS(1407), + [anon_sym___STACKTRACE__] = ACTIONS(1407), + [sym_alias] = ACTIONS(2547), + [sym_integer] = ACTIONS(2547), + [sym_float] = ACTIONS(2547), + [sym_char] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1415), + [anon_sym_CARET] = ACTIONS(1415), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1415), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1419), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [877] = { + [sym__expression] = STATE(3330), + [sym_block] = STATE(3330), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3330), + [sym_nil] = STATE(3330), + [sym__atom] = STATE(3330), + [sym_quoted_atom] = STATE(3330), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3330), + [sym_charlist] = STATE(3330), + [sym_sigil] = STATE(3330), + [sym_list] = STATE(3330), + [sym_tuple] = STATE(3330), + [sym_bitstring] = STATE(3330), + [sym_map] = STATE(3330), + [sym_unary_operator] = STATE(3330), + [sym_binary_operator] = STATE(3330), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3330), + [sym_call] = STATE(3330), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3330), + [sym_anonymous_function] = STATE(3330), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2549), + [sym_integer] = ACTIONS(2549), + [sym_float] = ACTIONS(2549), + [sym_char] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [878] = { + [sym__expression] = STATE(3333), + [sym_block] = STATE(3333), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3333), + [sym_nil] = STATE(3333), + [sym__atom] = STATE(3333), + [sym_quoted_atom] = STATE(3333), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3333), + [sym_charlist] = STATE(3333), + [sym_sigil] = STATE(3333), + [sym_list] = STATE(3333), + [sym_tuple] = STATE(3333), + [sym_bitstring] = STATE(3333), + [sym_map] = STATE(3333), + [sym_unary_operator] = STATE(3333), + [sym_binary_operator] = STATE(3333), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3333), + [sym_call] = STATE(3333), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3333), + [sym_anonymous_function] = STATE(3333), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [879] = { + [sym__expression] = STATE(3324), + [sym_block] = STATE(3324), + [sym__identifier] = STATE(76), + [sym_identifier] = STATE(76), + [sym_special_identifier] = STATE(76), + [sym_boolean] = STATE(3324), + [sym_nil] = STATE(3324), + [sym__atom] = STATE(3324), + [sym_quoted_atom] = STATE(3324), + [sym__quoted_i_double] = STATE(2360), + [sym__quoted_i_single] = STATE(2359), + [sym__quoted_i_heredoc_single] = STATE(2359), + [sym__quoted_i_heredoc_double] = STATE(2360), + [sym_string] = STATE(3324), + [sym_charlist] = STATE(3324), + [sym_sigil] = STATE(3324), + [sym_list] = STATE(3324), + [sym_tuple] = STATE(3324), + [sym_bitstring] = STATE(3324), + [sym_map] = STATE(3324), + [sym_unary_operator] = STATE(3324), + [sym_binary_operator] = STATE(3324), + [sym_operator_identifier] = STATE(4779), + [sym_dot] = STATE(3324), + [sym_call] = STATE(3324), + [sym__call_without_parentheses] = STATE(2358), + [sym__call_with_parentheses] = STATE(2358), + [sym__local_call_without_parentheses] = STATE(2358), + [sym__local_call_with_parentheses] = STATE(1871), + [sym__local_call_just_do_block] = STATE(2358), + [sym__remote_call_without_parentheses] = STATE(2358), + [sym__remote_call_with_parentheses] = STATE(1871), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1871), + [sym__anonymous_dot] = STATE(4759), + [sym__double_call] = STATE(2357), + [sym_access_call] = STATE(3324), + [sym_anonymous_function] = STATE(3324), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1067), + [aux_sym_identifier_token1] = ACTIONS(826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(826), + [sym_unused_identifier] = ACTIONS(1511), + [anon_sym___MODULE__] = ACTIONS(830), + [anon_sym___DIR__] = ACTIONS(830), + [anon_sym___ENV__] = ACTIONS(830), + [anon_sym___CALLER__] = ACTIONS(830), + [anon_sym___STACKTRACE__] = ACTIONS(830), + [sym_alias] = ACTIONS(2553), + [sym_integer] = ACTIONS(2553), + [sym_float] = ACTIONS(2553), + [sym_char] = ACTIONS(2553), + [anon_sym_true] = ACTIONS(1075), + [anon_sym_false] = ACTIONS(1075), + [anon_sym_nil] = ACTIONS(1077), + [sym_atom] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(1079), + [anon_sym_SQUOTE] = ACTIONS(1081), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1083), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LBRACK] = ACTIONS(1089), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1091), + [anon_sym_LT_LT] = ACTIONS(1095), + [anon_sym_PERCENT] = ACTIONS(1097), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PLUS] = ACTIONS(1519), + [anon_sym_DASH] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1519), + [anon_sym_CARET] = ACTIONS(1519), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1519), + [anon_sym_not] = ACTIONS(1519), + [anon_sym_AT] = ACTIONS(1521), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1105), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1523), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1109), + }, + [880] = { + [sym__expression] = STATE(1906), + [sym_block] = STATE(1906), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1906), + [sym_nil] = STATE(1906), + [sym__atom] = STATE(1906), + [sym_quoted_atom] = STATE(1906), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1906), + [sym_charlist] = STATE(1906), + [sym_sigil] = STATE(1906), + [sym_list] = STATE(1906), + [sym_tuple] = STATE(1906), + [sym_bitstring] = STATE(1906), + [sym_map] = STATE(1906), + [sym_unary_operator] = STATE(1906), + [sym_binary_operator] = STATE(1906), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1906), + [sym_call] = STATE(1906), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1906), + [sym_anonymous_function] = STATE(1906), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2555), + [sym_integer] = ACTIONS(2555), + [sym_float] = ACTIONS(2555), + [sym_char] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [881] = { + [sym__expression] = STATE(1907), + [sym_block] = STATE(1907), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1907), + [sym_nil] = STATE(1907), + [sym__atom] = STATE(1907), + [sym_quoted_atom] = STATE(1907), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1907), + [sym_charlist] = STATE(1907), + [sym_sigil] = STATE(1907), + [sym_list] = STATE(1907), + [sym_tuple] = STATE(1907), + [sym_bitstring] = STATE(1907), + [sym_map] = STATE(1907), + [sym_unary_operator] = STATE(1907), + [sym_binary_operator] = STATE(1907), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1907), + [sym_call] = STATE(1907), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1907), + [sym_anonymous_function] = STATE(1907), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2557), + [sym_integer] = ACTIONS(2557), + [sym_float] = ACTIONS(2557), + [sym_char] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [882] = { + [sym__expression] = STATE(3024), + [sym_block] = STATE(3024), + [sym__identifier] = STATE(59), + [sym_identifier] = STATE(59), + [sym_special_identifier] = STATE(59), + [sym_boolean] = STATE(3024), + [sym_nil] = STATE(3024), + [sym__atom] = STATE(3024), + [sym_quoted_atom] = STATE(3024), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(3024), + [sym_charlist] = STATE(3024), + [sym_sigil] = STATE(3024), + [sym_list] = STATE(3024), + [sym_tuple] = STATE(3024), + [sym_bitstring] = STATE(3024), + [sym_map] = STATE(3024), + [sym_unary_operator] = STATE(3024), + [sym_binary_operator] = STATE(3024), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(3024), + [sym_call] = STATE(3024), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(3024), + [sym_anonymous_function] = STATE(3024), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(704), + [sym_unused_identifier] = ACTIONS(1461), + [anon_sym___MODULE__] = ACTIONS(708), + [anon_sym___DIR__] = ACTIONS(708), + [anon_sym___ENV__] = ACTIONS(708), + [anon_sym___CALLER__] = ACTIONS(708), + [anon_sym___STACKTRACE__] = ACTIONS(708), + [sym_alias] = ACTIONS(2559), + [sym_integer] = ACTIONS(2559), + [sym_float] = ACTIONS(2559), + [sym_char] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1471), + [anon_sym_not] = ACTIONS(1471), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1475), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [883] = { + [sym__expression] = STATE(1382), + [sym_block] = STATE(1382), + [sym__identifier] = STATE(19), + [sym_identifier] = STATE(19), + [sym_special_identifier] = STATE(19), + [sym_boolean] = STATE(1382), + [sym_nil] = STATE(1382), + [sym__atom] = STATE(1382), + [sym_quoted_atom] = STATE(1382), + [sym__quoted_i_double] = STATE(1206), + [sym__quoted_i_single] = STATE(1205), + [sym__quoted_i_heredoc_single] = STATE(1205), + [sym__quoted_i_heredoc_double] = STATE(1206), + [sym_string] = STATE(1382), + [sym_charlist] = STATE(1382), + [sym_sigil] = STATE(1382), + [sym_list] = STATE(1382), + [sym_tuple] = STATE(1382), + [sym_bitstring] = STATE(1382), + [sym_map] = STATE(1382), + [sym_unary_operator] = STATE(1382), + [sym_binary_operator] = STATE(1382), + [sym_operator_identifier] = STATE(4831), + [sym_dot] = STATE(1382), + [sym_call] = STATE(1382), + [sym__call_without_parentheses] = STATE(1204), + [sym__call_with_parentheses] = STATE(1204), + [sym__local_call_without_parentheses] = STATE(1204), + [sym__local_call_with_parentheses] = STATE(1082), + [sym__local_call_just_do_block] = STATE(1204), + [sym__remote_call_without_parentheses] = STATE(1204), + [sym__remote_call_with_parentheses] = STATE(1082), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1082), + [sym__anonymous_dot] = STATE(4715), + [sym__double_call] = STATE(1196), + [sym_access_call] = STATE(1382), + [sym_anonymous_function] = STATE(1382), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(193), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(197), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2561), + [sym_integer] = ACTIONS(2561), + [sym_float] = ACTIONS(2561), + [sym_char] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(203), + [anon_sym_false] = ACTIONS(203), + [anon_sym_nil] = ACTIONS(205), + [sym_atom] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(207), + [anon_sym_SQUOTE] = ACTIONS(209), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(211), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LBRACK] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(219), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_PERCENT] = ACTIONS(225), + [anon_sym_AMP] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(229), + [anon_sym_not] = ACTIONS(229), + [anon_sym_AT] = ACTIONS(231), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(235), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(241), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(243), + }, + [884] = { + [sym__expression] = STATE(1519), + [sym_block] = STATE(1519), + [sym__identifier] = STATE(15), + [sym_identifier] = STATE(15), + [sym_special_identifier] = STATE(15), + [sym_boolean] = STATE(1519), + [sym_nil] = STATE(1519), + [sym__atom] = STATE(1519), + [sym_quoted_atom] = STATE(1519), + [sym__quoted_i_double] = STATE(1376), + [sym__quoted_i_single] = STATE(1395), + [sym__quoted_i_heredoc_single] = STATE(1395), + [sym__quoted_i_heredoc_double] = STATE(1376), + [sym_string] = STATE(1519), + [sym_charlist] = STATE(1519), + [sym_sigil] = STATE(1519), + [sym_list] = STATE(1519), + [sym_tuple] = STATE(1519), + [sym_bitstring] = STATE(1519), + [sym_map] = STATE(1519), + [sym_unary_operator] = STATE(1519), + [sym_binary_operator] = STATE(1519), + [sym_operator_identifier] = STATE(4862), + [sym_dot] = STATE(1519), + [sym_call] = STATE(1519), + [sym__call_without_parentheses] = STATE(1390), + [sym__call_with_parentheses] = STATE(1390), + [sym__local_call_without_parentheses] = STATE(1390), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1390), + [sym__remote_call_without_parentheses] = STATE(1390), + [sym__remote_call_with_parentheses] = STATE(1114), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1114), + [sym__anonymous_dot] = STATE(4732), + [sym__double_call] = STATE(1321), + [sym_access_call] = STATE(1519), + [sym_anonymous_function] = STATE(1519), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(249), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(251), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(1397), + [sym_integer] = ACTIONS(1397), + [sym_float] = ACTIONS(1397), + [sym_char] = ACTIONS(1397), + [anon_sym_true] = ACTIONS(255), + [anon_sym_false] = ACTIONS(255), + [anon_sym_nil] = ACTIONS(257), + [sym_atom] = ACTIONS(1397), + [anon_sym_DQUOTE] = ACTIONS(259), + [anon_sym_SQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(263), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(265), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LBRACK] = ACTIONS(269), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_LT_LT] = ACTIONS(278), + [anon_sym_PERCENT] = ACTIONS(280), + [anon_sym_AMP] = ACTIONS(282), + [anon_sym_PLUS] = ACTIONS(287), + [anon_sym_DASH] = ACTIONS(287), + [anon_sym_BANG] = ACTIONS(287), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(287), + [anon_sym_not] = ACTIONS(287), + [anon_sym_AT] = ACTIONS(289), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(291), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(295), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(300), + }, + [885] = { + [sym__expression] = STATE(1824), + [sym_block] = STATE(1824), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1824), + [sym_nil] = STATE(1824), + [sym__atom] = STATE(1824), + [sym_quoted_atom] = STATE(1824), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1824), + [sym_charlist] = STATE(1824), + [sym_sigil] = STATE(1824), + [sym_list] = STATE(1824), + [sym_tuple] = STATE(1824), + [sym_bitstring] = STATE(1824), + [sym_map] = STATE(1824), + [sym_unary_operator] = STATE(1824), + [sym_binary_operator] = STATE(1824), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1824), + [sym_call] = STATE(1824), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1824), + [sym_anonymous_function] = STATE(1824), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2563), + [sym_integer] = ACTIONS(2563), + [sym_float] = ACTIONS(2563), + [sym_char] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [886] = { + [sym__expression] = STATE(1682), + [sym_block] = STATE(1682), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1682), + [sym_nil] = STATE(1682), + [sym__atom] = STATE(1682), + [sym_quoted_atom] = STATE(1682), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1682), + [sym_charlist] = STATE(1682), + [sym_sigil] = STATE(1682), + [sym_list] = STATE(1682), + [sym_tuple] = STATE(1682), + [sym_bitstring] = STATE(1682), + [sym_map] = STATE(1682), + [sym_unary_operator] = STATE(1682), + [sym_binary_operator] = STATE(1682), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1682), + [sym_call] = STATE(1682), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1682), + [sym_anonymous_function] = STATE(1682), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(1929), + [sym_integer] = ACTIONS(1929), + [sym_float] = ACTIONS(1929), + [sym_char] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [887] = { + [sym__expression] = STATE(2945), + [sym_block] = STATE(2945), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2945), + [sym_nil] = STATE(2945), + [sym__atom] = STATE(2945), + [sym_quoted_atom] = STATE(2945), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2945), + [sym_charlist] = STATE(2945), + [sym_sigil] = STATE(2945), + [sym_list] = STATE(2945), + [sym_tuple] = STATE(2945), + [sym_bitstring] = STATE(2945), + [sym_map] = STATE(2945), + [sym_unary_operator] = STATE(2945), + [sym_binary_operator] = STATE(2945), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2945), + [sym_call] = STATE(2945), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2945), + [sym_anonymous_function] = STATE(2945), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2565), + [sym_integer] = ACTIONS(2565), + [sym_float] = ACTIONS(2565), + [sym_char] = ACTIONS(2565), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [888] = { + [sym__expression] = STATE(1910), + [sym_block] = STATE(1910), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1910), + [sym_nil] = STATE(1910), + [sym__atom] = STATE(1910), + [sym_quoted_atom] = STATE(1910), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1910), + [sym_charlist] = STATE(1910), + [sym_sigil] = STATE(1910), + [sym_list] = STATE(1910), + [sym_tuple] = STATE(1910), + [sym_bitstring] = STATE(1910), + [sym_map] = STATE(1910), + [sym_unary_operator] = STATE(1910), + [sym_binary_operator] = STATE(1910), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1910), + [sym_call] = STATE(1910), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1910), + [sym_anonymous_function] = STATE(1910), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2567), + [sym_integer] = ACTIONS(2567), + [sym_float] = ACTIONS(2567), + [sym_char] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [889] = { + [sym__expression] = STATE(1909), + [sym_block] = STATE(1909), + [sym__identifier] = STATE(25), + [sym_identifier] = STATE(25), + [sym_special_identifier] = STATE(25), + [sym_boolean] = STATE(1909), + [sym_nil] = STATE(1909), + [sym__atom] = STATE(1909), + [sym_quoted_atom] = STATE(1909), + [sym__quoted_i_double] = STATE(1766), + [sym__quoted_i_single] = STATE(1763), + [sym__quoted_i_heredoc_single] = STATE(1763), + [sym__quoted_i_heredoc_double] = STATE(1766), + [sym_string] = STATE(1909), + [sym_charlist] = STATE(1909), + [sym_sigil] = STATE(1909), + [sym_list] = STATE(1909), + [sym_tuple] = STATE(1909), + [sym_bitstring] = STATE(1909), + [sym_map] = STATE(1909), + [sym_unary_operator] = STATE(1909), + [sym_binary_operator] = STATE(1909), + [sym_operator_identifier] = STATE(4823), + [sym_dot] = STATE(1909), + [sym_call] = STATE(1909), + [sym__call_without_parentheses] = STATE(1759), + [sym__call_with_parentheses] = STATE(1759), + [sym__local_call_without_parentheses] = STATE(1759), + [sym__local_call_with_parentheses] = STATE(1270), + [sym__local_call_just_do_block] = STATE(1759), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1270), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1270), + [sym__anonymous_dot] = STATE(4709), + [sym__double_call] = STATE(1722), + [sym_access_call] = STATE(1909), + [sym_anonymous_function] = STATE(1909), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(942), + [aux_sym_identifier_token1] = ACTIONS(67), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [sym_unused_identifier] = ACTIONS(944), + [anon_sym___MODULE__] = ACTIONS(71), + [anon_sym___DIR__] = ACTIONS(71), + [anon_sym___ENV__] = ACTIONS(71), + [anon_sym___CALLER__] = ACTIONS(71), + [anon_sym___STACKTRACE__] = ACTIONS(71), + [sym_alias] = ACTIONS(2569), + [sym_integer] = ACTIONS(2569), + [sym_float] = ACTIONS(2569), + [sym_char] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(948), + [anon_sym_false] = ACTIONS(948), + [anon_sym_nil] = ACTIONS(950), + [sym_atom] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(952), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(956), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_PLUS] = ACTIONS(972), + [anon_sym_DASH] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(972), + [anon_sym_CARET] = ACTIONS(972), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(972), + [anon_sym_not] = ACTIONS(972), + [anon_sym_AT] = ACTIONS(974), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(978), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(980), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(982), + }, + [890] = { + [sym__expression] = STATE(3277), + [sym_block] = STATE(3277), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3277), + [sym_nil] = STATE(3277), + [sym__atom] = STATE(3277), + [sym_quoted_atom] = STATE(3277), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3277), + [sym_charlist] = STATE(3277), + [sym_sigil] = STATE(3277), + [sym_list] = STATE(3277), + [sym_tuple] = STATE(3277), + [sym_bitstring] = STATE(3277), + [sym_map] = STATE(3277), + [sym_unary_operator] = STATE(3277), + [sym_binary_operator] = STATE(3277), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3277), + [sym_call] = STATE(3277), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3277), + [sym_anonymous_function] = STATE(3277), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [891] = { + [sym__expression] = STATE(3276), + [sym_block] = STATE(3276), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3276), + [sym_nil] = STATE(3276), + [sym__atom] = STATE(3276), + [sym_quoted_atom] = STATE(3276), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3276), + [sym_charlist] = STATE(3276), + [sym_sigil] = STATE(3276), + [sym_list] = STATE(3276), + [sym_tuple] = STATE(3276), + [sym_bitstring] = STATE(3276), + [sym_map] = STATE(3276), + [sym_unary_operator] = STATE(3276), + [sym_binary_operator] = STATE(3276), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3276), + [sym_call] = STATE(3276), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3276), + [sym_anonymous_function] = STATE(3276), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2573), + [sym_integer] = ACTIONS(2573), + [sym_float] = ACTIONS(2573), + [sym_char] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [892] = { + [sym__expression] = STATE(3275), + [sym_block] = STATE(3275), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3275), + [sym_nil] = STATE(3275), + [sym__atom] = STATE(3275), + [sym_quoted_atom] = STATE(3275), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3275), + [sym_charlist] = STATE(3275), + [sym_sigil] = STATE(3275), + [sym_list] = STATE(3275), + [sym_tuple] = STATE(3275), + [sym_bitstring] = STATE(3275), + [sym_map] = STATE(3275), + [sym_unary_operator] = STATE(3275), + [sym_binary_operator] = STATE(3275), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3275), + [sym_call] = STATE(3275), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3275), + [sym_anonymous_function] = STATE(3275), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2575), + [sym_integer] = ACTIONS(2575), + [sym_float] = ACTIONS(2575), + [sym_char] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [893] = { + [sym__expression] = STATE(3274), + [sym_block] = STATE(3274), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3274), + [sym_nil] = STATE(3274), + [sym__atom] = STATE(3274), + [sym_quoted_atom] = STATE(3274), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3274), + [sym_charlist] = STATE(3274), + [sym_sigil] = STATE(3274), + [sym_list] = STATE(3274), + [sym_tuple] = STATE(3274), + [sym_bitstring] = STATE(3274), + [sym_map] = STATE(3274), + [sym_unary_operator] = STATE(3274), + [sym_binary_operator] = STATE(3274), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3274), + [sym_call] = STATE(3274), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3274), + [sym_anonymous_function] = STATE(3274), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2577), + [sym_integer] = ACTIONS(2577), + [sym_float] = ACTIONS(2577), + [sym_char] = ACTIONS(2577), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [894] = { + [sym__expression] = STATE(2152), + [sym_block] = STATE(2152), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(2152), + [sym_nil] = STATE(2152), + [sym__atom] = STATE(2152), + [sym_quoted_atom] = STATE(2152), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(2152), + [sym_charlist] = STATE(2152), + [sym_sigil] = STATE(2152), + [sym_list] = STATE(2152), + [sym_tuple] = STATE(2152), + [sym_bitstring] = STATE(2152), + [sym_map] = STATE(2152), + [sym_unary_operator] = STATE(2152), + [sym_binary_operator] = STATE(2152), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(2152), + [sym_call] = STATE(2152), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(2152), + [sym_anonymous_function] = STATE(2152), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [895] = { + [sym__expression] = STATE(3273), + [sym_block] = STATE(3273), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3273), + [sym_nil] = STATE(3273), + [sym__atom] = STATE(3273), + [sym_quoted_atom] = STATE(3273), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3273), + [sym_charlist] = STATE(3273), + [sym_sigil] = STATE(3273), + [sym_list] = STATE(3273), + [sym_tuple] = STATE(3273), + [sym_bitstring] = STATE(3273), + [sym_map] = STATE(3273), + [sym_unary_operator] = STATE(3273), + [sym_binary_operator] = STATE(3273), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3273), + [sym_call] = STATE(3273), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3273), + [sym_anonymous_function] = STATE(3273), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2581), + [sym_integer] = ACTIONS(2581), + [sym_float] = ACTIONS(2581), + [sym_char] = ACTIONS(2581), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [896] = { + [sym__expression] = STATE(3357), + [sym_block] = STATE(3357), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3357), + [sym_nil] = STATE(3357), + [sym__atom] = STATE(3357), + [sym_quoted_atom] = STATE(3357), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3357), + [sym_charlist] = STATE(3357), + [sym_sigil] = STATE(3357), + [sym_list] = STATE(3357), + [sym_tuple] = STATE(3357), + [sym_bitstring] = STATE(3357), + [sym_map] = STATE(3357), + [sym_unary_operator] = STATE(3357), + [sym_binary_operator] = STATE(3357), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3357), + [sym_call] = STATE(3357), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3357), + [sym_anonymous_function] = STATE(3357), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2583), + [sym_char] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [897] = { + [sym__expression] = STATE(3359), + [sym_block] = STATE(3359), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3359), + [sym_nil] = STATE(3359), + [sym__atom] = STATE(3359), + [sym_quoted_atom] = STATE(3359), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3359), + [sym_charlist] = STATE(3359), + [sym_sigil] = STATE(3359), + [sym_list] = STATE(3359), + [sym_tuple] = STATE(3359), + [sym_bitstring] = STATE(3359), + [sym_map] = STATE(3359), + [sym_unary_operator] = STATE(3359), + [sym_binary_operator] = STATE(3359), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3359), + [sym_call] = STATE(3359), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3359), + [sym_anonymous_function] = STATE(3359), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2585), + [sym_integer] = ACTIONS(2585), + [sym_float] = ACTIONS(2585), + [sym_char] = ACTIONS(2585), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [898] = { + [sym__expression] = STATE(2926), + [sym_block] = STATE(2926), + [sym__identifier] = STATE(60), + [sym_identifier] = STATE(60), + [sym_special_identifier] = STATE(60), + [sym_boolean] = STATE(2926), + [sym_nil] = STATE(2926), + [sym__atom] = STATE(2926), + [sym_quoted_atom] = STATE(2926), + [sym__quoted_i_double] = STATE(3007), + [sym__quoted_i_single] = STATE(3006), + [sym__quoted_i_heredoc_single] = STATE(3006), + [sym__quoted_i_heredoc_double] = STATE(3007), + [sym_string] = STATE(2926), + [sym_charlist] = STATE(2926), + [sym_sigil] = STATE(2926), + [sym_list] = STATE(2926), + [sym_tuple] = STATE(2926), + [sym_bitstring] = STATE(2926), + [sym_map] = STATE(2926), + [sym_unary_operator] = STATE(2926), + [sym_binary_operator] = STATE(2926), + [sym_operator_identifier] = STATE(4847), + [sym_dot] = STATE(2926), + [sym_call] = STATE(2926), + [sym__call_without_parentheses] = STATE(3005), + [sym__call_with_parentheses] = STATE(3005), + [sym__local_call_without_parentheses] = STATE(3005), + [sym__local_call_with_parentheses] = STATE(1921), + [sym__local_call_just_do_block] = STATE(3005), + [sym__remote_call_without_parentheses] = STATE(3005), + [sym__remote_call_with_parentheses] = STATE(1921), + [sym__remote_dot] = STATE(61), + [sym__anonymous_call] = STATE(1921), + [sym__anonymous_dot] = STATE(4757), + [sym__double_call] = STATE(3004), + [sym_access_call] = STATE(2926), + [sym_anonymous_function] = STATE(2926), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(607), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(611), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2587), + [sym_integer] = ACTIONS(2587), + [sym_float] = ACTIONS(2587), + [sym_char] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_nil] = ACTIONS(619), + [sym_atom] = ACTIONS(2587), + [anon_sym_DQUOTE] = ACTIONS(621), + [anon_sym_SQUOTE] = ACTIONS(623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(625), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(633), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(641), + [anon_sym_PLUS] = ACTIONS(646), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_CARET] = ACTIONS(646), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(646), + [anon_sym_not] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(648), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(650), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(654), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(656), + }, + [899] = { + [sym__expression] = STATE(3317), + [sym_block] = STATE(3317), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3317), + [sym_nil] = STATE(3317), + [sym__atom] = STATE(3317), + [sym_quoted_atom] = STATE(3317), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3317), + [sym_charlist] = STATE(3317), + [sym_sigil] = STATE(3317), + [sym_list] = STATE(3317), + [sym_tuple] = STATE(3317), + [sym_bitstring] = STATE(3317), + [sym_map] = STATE(3317), + [sym_unary_operator] = STATE(3317), + [sym_binary_operator] = STATE(3317), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3317), + [sym_call] = STATE(3317), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3317), + [sym_anonymous_function] = STATE(3317), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [900] = { + [sym__expression] = STATE(3350), + [sym_block] = STATE(3350), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3350), + [sym_nil] = STATE(3350), + [sym__atom] = STATE(3350), + [sym_quoted_atom] = STATE(3350), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3350), + [sym_charlist] = STATE(3350), + [sym_sigil] = STATE(3350), + [sym_list] = STATE(3350), + [sym_tuple] = STATE(3350), + [sym_bitstring] = STATE(3350), + [sym_map] = STATE(3350), + [sym_unary_operator] = STATE(3350), + [sym_binary_operator] = STATE(3350), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3350), + [sym_call] = STATE(3350), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3350), + [sym_anonymous_function] = STATE(3350), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2591), + [sym_integer] = ACTIONS(2591), + [sym_float] = ACTIONS(2591), + [sym_char] = ACTIONS(2591), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2591), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [901] = { + [sym__expression] = STATE(3349), + [sym_block] = STATE(3349), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3349), + [sym_nil] = STATE(3349), + [sym__atom] = STATE(3349), + [sym_quoted_atom] = STATE(3349), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3349), + [sym_charlist] = STATE(3349), + [sym_sigil] = STATE(3349), + [sym_list] = STATE(3349), + [sym_tuple] = STATE(3349), + [sym_bitstring] = STATE(3349), + [sym_map] = STATE(3349), + [sym_unary_operator] = STATE(3349), + [sym_binary_operator] = STATE(3349), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3349), + [sym_call] = STATE(3349), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3349), + [sym_anonymous_function] = STATE(3349), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2593), + [sym_integer] = ACTIONS(2593), + [sym_float] = ACTIONS(2593), + [sym_char] = ACTIONS(2593), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [902] = { + [sym__expression] = STATE(1957), + [sym_block] = STATE(1957), + [sym__identifier] = STATE(36), + [sym_identifier] = STATE(36), + [sym_special_identifier] = STATE(36), + [sym_boolean] = STATE(1957), + [sym_nil] = STATE(1957), + [sym__atom] = STATE(1957), + [sym_quoted_atom] = STATE(1957), + [sym__quoted_i_double] = STATE(1790), + [sym__quoted_i_single] = STATE(1789), + [sym__quoted_i_heredoc_single] = STATE(1789), + [sym__quoted_i_heredoc_double] = STATE(1790), + [sym_string] = STATE(1957), + [sym_charlist] = STATE(1957), + [sym_sigil] = STATE(1957), + [sym_list] = STATE(1957), + [sym_tuple] = STATE(1957), + [sym_bitstring] = STATE(1957), + [sym_map] = STATE(1957), + [sym_unary_operator] = STATE(1957), + [sym_binary_operator] = STATE(1957), + [sym_operator_identifier] = STATE(4839), + [sym_dot] = STATE(1957), + [sym_call] = STATE(1957), + [sym__call_without_parentheses] = STATE(1788), + [sym__call_with_parentheses] = STATE(1788), + [sym__local_call_without_parentheses] = STATE(1788), + [sym__local_call_with_parentheses] = STATE(1426), + [sym__local_call_just_do_block] = STATE(1788), + [sym__remote_call_without_parentheses] = STATE(1788), + [sym__remote_call_with_parentheses] = STATE(1426), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1426), + [sym__anonymous_dot] = STATE(4744), + [sym__double_call] = STATE(1787), + [sym_access_call] = STATE(1957), + [sym_anonymous_function] = STATE(1957), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(357), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(361), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2595), + [sym_integer] = ACTIONS(2595), + [sym_float] = ACTIONS(2595), + [sym_char] = ACTIONS(2595), + [anon_sym_true] = ACTIONS(367), + [anon_sym_false] = ACTIONS(367), + [anon_sym_nil] = ACTIONS(369), + [sym_atom] = ACTIONS(2595), + [anon_sym_DQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(375), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(377), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(393), + [anon_sym_not] = ACTIONS(393), + [anon_sym_AT] = ACTIONS(395), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(401), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(403), + }, + [903] = { + [sym__expression] = STATE(3335), + [sym_block] = STATE(3335), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3335), + [sym_nil] = STATE(3335), + [sym__atom] = STATE(3335), + [sym_quoted_atom] = STATE(3335), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3335), + [sym_charlist] = STATE(3335), + [sym_sigil] = STATE(3335), + [sym_list] = STATE(3335), + [sym_tuple] = STATE(3335), + [sym_bitstring] = STATE(3335), + [sym_map] = STATE(3335), + [sym_unary_operator] = STATE(3335), + [sym_binary_operator] = STATE(3335), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3335), + [sym_call] = STATE(3335), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3335), + [sym_anonymous_function] = STATE(3335), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2597), + [sym_integer] = ACTIONS(2597), + [sym_float] = ACTIONS(2597), + [sym_char] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [904] = { + [sym__expression] = STATE(3332), + [sym_block] = STATE(3332), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3332), + [sym_nil] = STATE(3332), + [sym__atom] = STATE(3332), + [sym_quoted_atom] = STATE(3332), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3332), + [sym_charlist] = STATE(3332), + [sym_sigil] = STATE(3332), + [sym_list] = STATE(3332), + [sym_tuple] = STATE(3332), + [sym_bitstring] = STATE(3332), + [sym_map] = STATE(3332), + [sym_unary_operator] = STATE(3332), + [sym_binary_operator] = STATE(3332), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3332), + [sym_call] = STATE(3332), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3332), + [sym_anonymous_function] = STATE(3332), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2599), + [sym_integer] = ACTIONS(2599), + [sym_float] = ACTIONS(2599), + [sym_char] = ACTIONS(2599), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2599), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [905] = { + [sym__expression] = STATE(3331), + [sym_block] = STATE(3331), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3331), + [sym_nil] = STATE(3331), + [sym__atom] = STATE(3331), + [sym_quoted_atom] = STATE(3331), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3331), + [sym_charlist] = STATE(3331), + [sym_sigil] = STATE(3331), + [sym_list] = STATE(3331), + [sym_tuple] = STATE(3331), + [sym_bitstring] = STATE(3331), + [sym_map] = STATE(3331), + [sym_unary_operator] = STATE(3331), + [sym_binary_operator] = STATE(3331), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3331), + [sym_call] = STATE(3331), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3331), + [sym_anonymous_function] = STATE(3331), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2601), + [sym_integer] = ACTIONS(2601), + [sym_float] = ACTIONS(2601), + [sym_char] = ACTIONS(2601), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [906] = { + [sym__expression] = STATE(3329), + [sym_block] = STATE(3329), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3329), + [sym_nil] = STATE(3329), + [sym__atom] = STATE(3329), + [sym_quoted_atom] = STATE(3329), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3329), + [sym_charlist] = STATE(3329), + [sym_sigil] = STATE(3329), + [sym_list] = STATE(3329), + [sym_tuple] = STATE(3329), + [sym_bitstring] = STATE(3329), + [sym_map] = STATE(3329), + [sym_unary_operator] = STATE(3329), + [sym_binary_operator] = STATE(3329), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3329), + [sym_call] = STATE(3329), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3329), + [sym_anonymous_function] = STATE(3329), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2603), + [sym_integer] = ACTIONS(2603), + [sym_float] = ACTIONS(2603), + [sym_char] = ACTIONS(2603), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2603), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [907] = { + [sym__expression] = STATE(3337), + [sym_block] = STATE(3337), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3337), + [sym_nil] = STATE(3337), + [sym__atom] = STATE(3337), + [sym_quoted_atom] = STATE(3337), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3337), + [sym_charlist] = STATE(3337), + [sym_sigil] = STATE(3337), + [sym_list] = STATE(3337), + [sym_tuple] = STATE(3337), + [sym_bitstring] = STATE(3337), + [sym_map] = STATE(3337), + [sym_unary_operator] = STATE(3337), + [sym_binary_operator] = STATE(3337), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3337), + [sym_call] = STATE(3337), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3337), + [sym_anonymous_function] = STATE(3337), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2605), + [sym_integer] = ACTIONS(2605), + [sym_float] = ACTIONS(2605), + [sym_char] = ACTIONS(2605), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [908] = { + [sym__expression] = STATE(3271), + [sym_block] = STATE(3271), + [sym__identifier] = STATE(72), + [sym_identifier] = STATE(72), + [sym_special_identifier] = STATE(72), + [sym_boolean] = STATE(3271), + [sym_nil] = STATE(3271), + [sym__atom] = STATE(3271), + [sym_quoted_atom] = STATE(3271), + [sym__quoted_i_double] = STATE(3308), + [sym__quoted_i_single] = STATE(3307), + [sym__quoted_i_heredoc_single] = STATE(3307), + [sym__quoted_i_heredoc_double] = STATE(3308), + [sym_string] = STATE(3271), + [sym_charlist] = STATE(3271), + [sym_sigil] = STATE(3271), + [sym_list] = STATE(3271), + [sym_tuple] = STATE(3271), + [sym_bitstring] = STATE(3271), + [sym_map] = STATE(3271), + [sym_unary_operator] = STATE(3271), + [sym_binary_operator] = STATE(3271), + [sym_operator_identifier] = STATE(4799), + [sym_dot] = STATE(3271), + [sym_call] = STATE(3271), + [sym__call_without_parentheses] = STATE(3304), + [sym__call_with_parentheses] = STATE(3304), + [sym__local_call_without_parentheses] = STATE(3304), + [sym__local_call_with_parentheses] = STATE(2674), + [sym__local_call_just_do_block] = STATE(3304), + [sym__remote_call_without_parentheses] = STATE(3304), + [sym__remote_call_with_parentheses] = STATE(2674), + [sym__remote_dot] = STATE(62), + [sym__anonymous_call] = STATE(2674), + [sym__anonymous_dot] = STATE(4752), + [sym__double_call] = STATE(3300), + [sym_access_call] = STATE(3271), + [sym_anonymous_function] = STATE(3271), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1115), + [aux_sym_identifier_token1] = ACTIONS(1117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1117), + [sym_unused_identifier] = ACTIONS(1119), + [anon_sym___MODULE__] = ACTIONS(1121), + [anon_sym___DIR__] = ACTIONS(1121), + [anon_sym___ENV__] = ACTIONS(1121), + [anon_sym___CALLER__] = ACTIONS(1121), + [anon_sym___STACKTRACE__] = ACTIONS(1121), + [sym_alias] = ACTIONS(2607), + [sym_integer] = ACTIONS(2607), + [sym_float] = ACTIONS(2607), + [sym_char] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(1125), + [anon_sym_false] = ACTIONS(1125), + [anon_sym_nil] = ACTIONS(1127), + [sym_atom] = ACTIONS(2607), + [anon_sym_DQUOTE] = ACTIONS(1129), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1133), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1135), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(39), + [anon_sym_GT] = ACTIONS(39), + [anon_sym_PIPE] = ACTIONS(39), + [anon_sym_SLASH] = ACTIONS(39), + [anon_sym_TILDE] = ACTIONS(1141), + [anon_sym_LT_LT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1149), + [anon_sym_AMP] = ACTIONS(1151), + [anon_sym_PLUS] = ACTIONS(1153), + [anon_sym_DASH] = ACTIONS(1153), + [anon_sym_BANG] = ACTIONS(1153), + [anon_sym_CARET] = ACTIONS(1153), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1153), + [anon_sym_not] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_LT_DASH] = ACTIONS(39), + [anon_sym_BSLASH_BSLASH] = ACTIONS(39), + [anon_sym_when] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(39), + [anon_sym_EQ] = ACTIONS(39), + [anon_sym_PIPE_PIPE] = ACTIONS(39), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), + [anon_sym_or] = ACTIONS(39), + [anon_sym_AMP_AMP] = ACTIONS(39), + [anon_sym_AMP_AMP_AMP] = ACTIONS(39), + [anon_sym_and] = ACTIONS(39), + [anon_sym_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ] = ACTIONS(39), + [anon_sym_EQ_TILDE] = ACTIONS(39), + [anon_sym_EQ_EQ_EQ] = ACTIONS(39), + [anon_sym_BANG_EQ_EQ] = ACTIONS(39), + [anon_sym_LT_EQ] = ACTIONS(39), + [anon_sym_GT_EQ] = ACTIONS(39), + [anon_sym_PIPE_GT] = ACTIONS(39), + [anon_sym_LT_LT_LT] = ACTIONS(39), + [anon_sym_GT_GT_GT] = ACTIONS(39), + [anon_sym_LT_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT_GT] = ACTIONS(39), + [anon_sym_LT_TILDE] = ACTIONS(39), + [anon_sym_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_TILDE_GT] = ACTIONS(39), + [anon_sym_LT_PIPE_GT] = ACTIONS(39), + [anon_sym_in] = ACTIONS(39), + [anon_sym_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH] = ACTIONS(39), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), + [anon_sym_DASH_DASH_DASH] = ACTIONS(39), + [anon_sym_DOT_DOT] = ACTIONS(39), + [anon_sym_LT_GT] = ACTIONS(39), + [anon_sym_STAR] = ACTIONS(39), + [anon_sym_STAR_STAR] = ACTIONS(39), + [anon_sym_CARET_CARET] = ACTIONS(39), + [anon_sym_DASH_GT] = ACTIONS(39), + [anon_sym_DOT] = ACTIONS(39), + [anon_sym_fn] = ACTIONS(1157), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1159), + [sym__not_in] = ACTIONS(57), + [sym__quoted_atom_start] = ACTIONS(1161), + }, + [909] = { + [aux_sym__terminator_token1] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2611), + [aux_sym_identifier_token1] = ACTIONS(2611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2611), + [sym_unused_identifier] = ACTIONS(2611), + [anon_sym___MODULE__] = ACTIONS(2611), + [anon_sym___DIR__] = ACTIONS(2611), + [anon_sym___ENV__] = ACTIONS(2611), + [anon_sym___CALLER__] = ACTIONS(2611), + [anon_sym___STACKTRACE__] = ACTIONS(2611), + [sym_alias] = ACTIONS(2611), + [sym_integer] = ACTIONS(2611), + [sym_float] = ACTIONS(2611), + [sym_char] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2611), + [anon_sym_false] = ACTIONS(2611), + [anon_sym_nil] = ACTIONS(2611), + [sym_atom] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2611), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_GT] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_COMMA] = ACTIONS(2611), + [sym_keyword] = ACTIONS(2611), + [anon_sym_LT_LT] = ACTIONS(2611), + [anon_sym_PERCENT] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_CARET] = ACTIONS(2611), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_LT_DASH] = ACTIONS(2611), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2611), + [anon_sym_when] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_EQ_GT] = ACTIONS(2611), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_or] = ACTIONS(2611), + [anon_sym_AMP_AMP] = ACTIONS(2611), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2611), + [anon_sym_and] = ACTIONS(2611), + [anon_sym_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ] = ACTIONS(2611), + [anon_sym_EQ_TILDE] = ACTIONS(2611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_PIPE_GT] = ACTIONS(2611), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_GT_GT_GT] = ACTIONS(2611), + [anon_sym_LT_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_PIPE_GT] = ACTIONS(2611), + [anon_sym_in] = ACTIONS(2611), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2611), + [anon_sym_SLASH_SLASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_LT_GT] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_STAR_STAR] = ACTIONS(2611), + [anon_sym_CARET_CARET] = ACTIONS(2611), + [anon_sym_DASH_GT] = ACTIONS(2611), + [anon_sym_DOT] = ACTIONS(2611), + [anon_sym_after] = ACTIONS(2611), + [anon_sym_catch] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_end] = ACTIONS(2611), + [anon_sym_fn] = ACTIONS(2611), + [anon_sym_rescue] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_LBRACK2] = ACTIONS(2609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2609), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2609), + [sym__not_in] = ACTIONS(2609), + [sym__quoted_atom_start] = ACTIONS(2609), + }, + [910] = { + [aux_sym__terminator_token1] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_after] = ACTIONS(2615), + [anon_sym_catch] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_end] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_rescue] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2613), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [911] = { + [aux_sym__terminator_token1] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [aux_sym_identifier_token1] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2619), + [sym_unused_identifier] = ACTIONS(2619), + [anon_sym___MODULE__] = ACTIONS(2619), + [anon_sym___DIR__] = ACTIONS(2619), + [anon_sym___ENV__] = ACTIONS(2619), + [anon_sym___CALLER__] = ACTIONS(2619), + [anon_sym___STACKTRACE__] = ACTIONS(2619), + [sym_alias] = ACTIONS(2619), + [sym_integer] = ACTIONS(2619), + [sym_float] = ACTIONS(2619), + [sym_char] = ACTIONS(2619), + [anon_sym_true] = ACTIONS(2619), + [anon_sym_false] = ACTIONS(2619), + [anon_sym_nil] = ACTIONS(2619), + [sym_atom] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2619), + [anon_sym_GT] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2619), + [sym_keyword] = ACTIONS(2619), + [anon_sym_LT_LT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2619), + [anon_sym_CARET] = ACTIONS(2619), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2619), + [anon_sym_when] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2619), + [anon_sym_EQ_GT] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2619), + [anon_sym_and] = ACTIONS(2619), + [anon_sym_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2619), + [anon_sym_EQ_TILDE] = ACTIONS(2619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_PIPE_GT] = ACTIONS(2619), + [anon_sym_LT_LT_LT] = ACTIONS(2619), + [anon_sym_GT_GT_GT] = ACTIONS(2619), + [anon_sym_LT_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_PIPE_GT] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(2619), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2619), + [anon_sym_SLASH_SLASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(2619), + [anon_sym_LT_GT] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2619), + [anon_sym_STAR_STAR] = ACTIONS(2619), + [anon_sym_CARET_CARET] = ACTIONS(2619), + [anon_sym_DASH_GT] = ACTIONS(2619), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_after] = ACTIONS(2619), + [anon_sym_catch] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_end] = ACTIONS(2619), + [anon_sym_fn] = ACTIONS(2619), + [anon_sym_rescue] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_LBRACK2] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2617), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2617), + [sym__not_in] = ACTIONS(2617), + [sym__quoted_atom_start] = ACTIONS(2617), + }, + [912] = { + [aux_sym__terminator_token1] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2623), + [aux_sym_identifier_token1] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2623), + [sym_unused_identifier] = ACTIONS(2623), + [anon_sym___MODULE__] = ACTIONS(2623), + [anon_sym___DIR__] = ACTIONS(2623), + [anon_sym___ENV__] = ACTIONS(2623), + [anon_sym___CALLER__] = ACTIONS(2623), + [anon_sym___STACKTRACE__] = ACTIONS(2623), + [sym_alias] = ACTIONS(2623), + [sym_integer] = ACTIONS(2623), + [sym_float] = ACTIONS(2623), + [sym_char] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [anon_sym_nil] = ACTIONS(2623), + [sym_atom] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2623), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_GT] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2623), + [anon_sym_COMMA] = ACTIONS(2623), + [sym_keyword] = ACTIONS(2623), + [anon_sym_LT_LT] = ACTIONS(2623), + [anon_sym_PERCENT] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_BANG] = ACTIONS(2623), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_LT_DASH] = ACTIONS(2623), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2623), + [anon_sym_when] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2623), + [anon_sym_EQ_GT] = ACTIONS(2623), + [anon_sym_EQ] = ACTIONS(2623), + [anon_sym_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_or] = ACTIONS(2623), + [anon_sym_AMP_AMP] = ACTIONS(2623), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2623), + [anon_sym_and] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ] = ACTIONS(2623), + [anon_sym_EQ_TILDE] = ACTIONS(2623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2623), + [anon_sym_LT_EQ] = ACTIONS(2623), + [anon_sym_GT_EQ] = ACTIONS(2623), + [anon_sym_PIPE_GT] = ACTIONS(2623), + [anon_sym_LT_LT_LT] = ACTIONS(2623), + [anon_sym_GT_GT_GT] = ACTIONS(2623), + [anon_sym_LT_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_PIPE_GT] = ACTIONS(2623), + [anon_sym_in] = ACTIONS(2623), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2623), + [anon_sym_SLASH_SLASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2623), + [anon_sym_LT_GT] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2623), + [anon_sym_CARET_CARET] = ACTIONS(2623), + [anon_sym_DASH_GT] = ACTIONS(2623), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_after] = ACTIONS(2623), + [anon_sym_catch] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_end] = ACTIONS(2623), + [anon_sym_fn] = ACTIONS(2623), + [anon_sym_rescue] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2621), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2621), + [sym__not_in] = ACTIONS(2621), + [sym__quoted_atom_start] = ACTIONS(2621), + }, + [913] = { + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_after] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_end] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_rescue] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [914] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_after] = ACTIONS(2631), + [anon_sym_catch] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_end] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_rescue] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [915] = { + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_after] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_end] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_rescue] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [916] = { + [aux_sym__terminator_token1] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_after] = ACTIONS(2635), + [anon_sym_catch] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_end] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_rescue] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2633), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [917] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_after] = ACTIONS(2631), + [anon_sym_catch] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_end] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_rescue] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [918] = { + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_after] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_end] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_rescue] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [919] = { + [aux_sym__terminator_token1] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [aux_sym_identifier_token1] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2639), + [sym_unused_identifier] = ACTIONS(2639), + [anon_sym___MODULE__] = ACTIONS(2639), + [anon_sym___DIR__] = ACTIONS(2639), + [anon_sym___ENV__] = ACTIONS(2639), + [anon_sym___CALLER__] = ACTIONS(2639), + [anon_sym___STACKTRACE__] = ACTIONS(2639), + [sym_alias] = ACTIONS(2639), + [sym_integer] = ACTIONS(2639), + [sym_float] = ACTIONS(2639), + [sym_char] = ACTIONS(2639), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [anon_sym_nil] = ACTIONS(2639), + [sym_atom] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [sym_keyword] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2639), + [anon_sym_when] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_EQ_GT] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2639), + [anon_sym_and] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_EQ_TILDE] = ACTIONS(2639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_PIPE_GT] = ACTIONS(2639), + [anon_sym_LT_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_LT_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_PIPE_GT] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2639), + [anon_sym_LT_GT] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_STAR_STAR] = ACTIONS(2639), + [anon_sym_CARET_CARET] = ACTIONS(2639), + [anon_sym_DASH_GT] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_after] = ACTIONS(2639), + [anon_sym_catch] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_end] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_rescue] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_LBRACK2] = ACTIONS(2637), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2637), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2637), + [sym__not_in] = ACTIONS(2637), + [sym__quoted_atom_start] = ACTIONS(2637), + }, + [920] = { + [aux_sym__terminator_token1] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [aux_sym_identifier_token1] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), + [sym_unused_identifier] = ACTIONS(2643), + [anon_sym___MODULE__] = ACTIONS(2643), + [anon_sym___DIR__] = ACTIONS(2643), + [anon_sym___ENV__] = ACTIONS(2643), + [anon_sym___CALLER__] = ACTIONS(2643), + [anon_sym___STACKTRACE__] = ACTIONS(2643), + [sym_alias] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_char] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_nil] = ACTIONS(2643), + [sym_atom] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(2643), + [sym_keyword] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_EQ_GT] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_EQ_TILDE] = ACTIONS(2643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_PIPE_GT] = ACTIONS(2643), + [anon_sym_LT_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_LT_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_PIPE_GT] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_LT_GT] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_CARET_CARET] = ACTIONS(2643), + [anon_sym_DASH_GT] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_after] = ACTIONS(2643), + [anon_sym_catch] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_end] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_rescue] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_LBRACK2] = ACTIONS(2641), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2641), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2641), + [sym__not_in] = ACTIONS(2641), + [sym__quoted_atom_start] = ACTIONS(2641), + }, + [921] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_after] = ACTIONS(2631), + [anon_sym_catch] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_end] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_rescue] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [922] = { + [aux_sym__terminator_token1] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(2647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), + [sym_unused_identifier] = ACTIONS(2647), + [anon_sym___MODULE__] = ACTIONS(2647), + [anon_sym___DIR__] = ACTIONS(2647), + [anon_sym___ENV__] = ACTIONS(2647), + [anon_sym___CALLER__] = ACTIONS(2647), + [anon_sym___STACKTRACE__] = ACTIONS(2647), + [sym_alias] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2647), + [sym_char] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_nil] = ACTIONS(2647), + [sym_atom] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [sym_keyword] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AT] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2647), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_EQ_TILDE] = ACTIONS(2647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_PIPE_GT] = ACTIONS(2647), + [anon_sym_LT_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_PIPE_GT] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_LT_GT] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_STAR_STAR] = ACTIONS(2647), + [anon_sym_CARET_CARET] = ACTIONS(2647), + [anon_sym_DASH_GT] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_after] = ACTIONS(2647), + [anon_sym_catch] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_end] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_rescue] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_LBRACK2] = ACTIONS(2645), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2645), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2645), + [sym__not_in] = ACTIONS(2645), + [sym__quoted_atom_start] = ACTIONS(2645), + }, + [923] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_after] = ACTIONS(2631), + [anon_sym_catch] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_end] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_rescue] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [924] = { + [aux_sym__terminator_token1] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [aux_sym_identifier_token1] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2651), + [sym_unused_identifier] = ACTIONS(2651), + [anon_sym___MODULE__] = ACTIONS(2651), + [anon_sym___DIR__] = ACTIONS(2651), + [anon_sym___ENV__] = ACTIONS(2651), + [anon_sym___CALLER__] = ACTIONS(2651), + [anon_sym___STACKTRACE__] = ACTIONS(2651), + [sym_alias] = ACTIONS(2651), + [sym_integer] = ACTIONS(2651), + [sym_float] = ACTIONS(2651), + [sym_char] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_nil] = ACTIONS(2651), + [sym_atom] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [sym_keyword] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_AT] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2651), + [anon_sym_when] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_EQ_GT] = ACTIONS(2651), + [anon_sym_EQ] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2651), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_EQ_TILDE] = ACTIONS(2651), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_PIPE_GT] = ACTIONS(2651), + [anon_sym_LT_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_LT_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_PIPE_GT] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2651), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_LT_GT] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_STAR_STAR] = ACTIONS(2651), + [anon_sym_CARET_CARET] = ACTIONS(2651), + [anon_sym_DASH_GT] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_after] = ACTIONS(2651), + [anon_sym_catch] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_end] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_rescue] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2649), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2649), + [sym__not_in] = ACTIONS(2649), + [sym__quoted_atom_start] = ACTIONS(2649), + }, + [925] = { + [aux_sym__terminator_token1] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_after] = ACTIONS(2635), + [anon_sym_catch] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_end] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_rescue] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [926] = { + [aux_sym__terminator_token1] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_after] = ACTIONS(2615), + [anon_sym_catch] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_end] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_rescue] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [927] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_RBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2633), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [928] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_RPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_RBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2613), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [929] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_RBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [930] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_RPAREN] = ACTIONS(2639), + [aux_sym_identifier_token1] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2639), + [sym_unused_identifier] = ACTIONS(2639), + [anon_sym___MODULE__] = ACTIONS(2639), + [anon_sym___DIR__] = ACTIONS(2639), + [anon_sym___ENV__] = ACTIONS(2639), + [anon_sym___CALLER__] = ACTIONS(2639), + [anon_sym___STACKTRACE__] = ACTIONS(2639), + [sym_alias] = ACTIONS(2639), + [sym_integer] = ACTIONS(2639), + [sym_float] = ACTIONS(2639), + [sym_char] = ACTIONS(2639), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [anon_sym_nil] = ACTIONS(2639), + [sym_atom] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_RBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_RBRACK] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [sym_keyword] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2639), + [anon_sym_when] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_EQ_GT] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2639), + [anon_sym_and] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_EQ_TILDE] = ACTIONS(2639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_PIPE_GT] = ACTIONS(2639), + [anon_sym_LT_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_LT_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_PIPE_GT] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2639), + [anon_sym_LT_GT] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_STAR_STAR] = ACTIONS(2639), + [anon_sym_CARET_CARET] = ACTIONS(2639), + [anon_sym_DASH_GT] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_LBRACK2] = ACTIONS(2637), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2637), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2637), + [sym__not_in] = ACTIONS(2637), + [sym__quoted_atom_start] = ACTIONS(2637), + }, + [931] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2651), + [aux_sym_identifier_token1] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2651), + [sym_unused_identifier] = ACTIONS(2651), + [anon_sym___MODULE__] = ACTIONS(2651), + [anon_sym___DIR__] = ACTIONS(2651), + [anon_sym___ENV__] = ACTIONS(2651), + [anon_sym___CALLER__] = ACTIONS(2651), + [anon_sym___STACKTRACE__] = ACTIONS(2651), + [sym_alias] = ACTIONS(2651), + [sym_integer] = ACTIONS(2651), + [sym_float] = ACTIONS(2651), + [sym_char] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_nil] = ACTIONS(2651), + [sym_atom] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_RBRACK] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [sym_keyword] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_AT] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2651), + [anon_sym_when] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_EQ_GT] = ACTIONS(2651), + [anon_sym_EQ] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2651), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_EQ_TILDE] = ACTIONS(2651), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_PIPE_GT] = ACTIONS(2651), + [anon_sym_LT_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_LT_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_PIPE_GT] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2651), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_LT_GT] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_STAR_STAR] = ACTIONS(2651), + [anon_sym_CARET_CARET] = ACTIONS(2651), + [anon_sym_DASH_GT] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2649), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2649), + [sym__not_in] = ACTIONS(2649), + [sym__quoted_atom_start] = ACTIONS(2649), + }, + [932] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_RBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [933] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(2647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), + [sym_unused_identifier] = ACTIONS(2647), + [anon_sym___MODULE__] = ACTIONS(2647), + [anon_sym___DIR__] = ACTIONS(2647), + [anon_sym___ENV__] = ACTIONS(2647), + [anon_sym___CALLER__] = ACTIONS(2647), + [anon_sym___STACKTRACE__] = ACTIONS(2647), + [sym_alias] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2647), + [sym_char] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_nil] = ACTIONS(2647), + [sym_atom] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [sym_keyword] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AT] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2647), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_EQ_TILDE] = ACTIONS(2647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_PIPE_GT] = ACTIONS(2647), + [anon_sym_LT_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_PIPE_GT] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_LT_GT] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_STAR_STAR] = ACTIONS(2647), + [anon_sym_CARET_CARET] = ACTIONS(2647), + [anon_sym_DASH_GT] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_LBRACK2] = ACTIONS(2645), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2645), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2645), + [sym__not_in] = ACTIONS(2645), + [sym__quoted_atom_start] = ACTIONS(2645), + }, + [934] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2619), + [aux_sym_identifier_token1] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2619), + [sym_unused_identifier] = ACTIONS(2619), + [anon_sym___MODULE__] = ACTIONS(2619), + [anon_sym___DIR__] = ACTIONS(2619), + [anon_sym___ENV__] = ACTIONS(2619), + [anon_sym___CALLER__] = ACTIONS(2619), + [anon_sym___STACKTRACE__] = ACTIONS(2619), + [sym_alias] = ACTIONS(2619), + [sym_integer] = ACTIONS(2619), + [sym_float] = ACTIONS(2619), + [sym_char] = ACTIONS(2619), + [anon_sym_true] = ACTIONS(2619), + [anon_sym_false] = ACTIONS(2619), + [anon_sym_nil] = ACTIONS(2619), + [sym_atom] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_RBRACK] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2619), + [anon_sym_GT] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2619), + [sym_keyword] = ACTIONS(2619), + [anon_sym_LT_LT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2619), + [anon_sym_CARET] = ACTIONS(2619), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2619), + [anon_sym_when] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2619), + [anon_sym_EQ_GT] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2619), + [anon_sym_and] = ACTIONS(2619), + [anon_sym_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2619), + [anon_sym_EQ_TILDE] = ACTIONS(2619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_PIPE_GT] = ACTIONS(2619), + [anon_sym_LT_LT_LT] = ACTIONS(2619), + [anon_sym_GT_GT_GT] = ACTIONS(2619), + [anon_sym_LT_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_PIPE_GT] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(2619), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2619), + [anon_sym_SLASH_SLASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(2619), + [anon_sym_LT_GT] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2619), + [anon_sym_STAR_STAR] = ACTIONS(2619), + [anon_sym_CARET_CARET] = ACTIONS(2619), + [anon_sym_DASH_GT] = ACTIONS(2619), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_fn] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_LBRACK2] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2617), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2617), + [sym__not_in] = ACTIONS(2617), + [sym__quoted_atom_start] = ACTIONS(2617), + }, + [935] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_RPAREN] = ACTIONS(2643), + [aux_sym_identifier_token1] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), + [sym_unused_identifier] = ACTIONS(2643), + [anon_sym___MODULE__] = ACTIONS(2643), + [anon_sym___DIR__] = ACTIONS(2643), + [anon_sym___ENV__] = ACTIONS(2643), + [anon_sym___CALLER__] = ACTIONS(2643), + [anon_sym___STACKTRACE__] = ACTIONS(2643), + [sym_alias] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_char] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_nil] = ACTIONS(2643), + [sym_atom] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_RBRACK] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(2643), + [sym_keyword] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_EQ_GT] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_EQ_TILDE] = ACTIONS(2643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_PIPE_GT] = ACTIONS(2643), + [anon_sym_LT_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_LT_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_PIPE_GT] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_LT_GT] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_CARET_CARET] = ACTIONS(2643), + [anon_sym_DASH_GT] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_LBRACK2] = ACTIONS(2641), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2641), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2641), + [sym__not_in] = ACTIONS(2641), + [sym__quoted_atom_start] = ACTIONS(2641), + }, + [936] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [937] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_RPAREN] = ACTIONS(2623), + [aux_sym_identifier_token1] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2623), + [sym_unused_identifier] = ACTIONS(2623), + [anon_sym___MODULE__] = ACTIONS(2623), + [anon_sym___DIR__] = ACTIONS(2623), + [anon_sym___ENV__] = ACTIONS(2623), + [anon_sym___CALLER__] = ACTIONS(2623), + [anon_sym___STACKTRACE__] = ACTIONS(2623), + [sym_alias] = ACTIONS(2623), + [sym_integer] = ACTIONS(2623), + [sym_float] = ACTIONS(2623), + [sym_char] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [anon_sym_nil] = ACTIONS(2623), + [sym_atom] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2623), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_RBRACK] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_GT] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2623), + [anon_sym_COMMA] = ACTIONS(2623), + [sym_keyword] = ACTIONS(2623), + [anon_sym_LT_LT] = ACTIONS(2623), + [anon_sym_PERCENT] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_BANG] = ACTIONS(2623), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_LT_DASH] = ACTIONS(2623), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2623), + [anon_sym_when] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2623), + [anon_sym_EQ_GT] = ACTIONS(2623), + [anon_sym_EQ] = ACTIONS(2623), + [anon_sym_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_or] = ACTIONS(2623), + [anon_sym_AMP_AMP] = ACTIONS(2623), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2623), + [anon_sym_and] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ] = ACTIONS(2623), + [anon_sym_EQ_TILDE] = ACTIONS(2623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2623), + [anon_sym_LT_EQ] = ACTIONS(2623), + [anon_sym_GT_EQ] = ACTIONS(2623), + [anon_sym_PIPE_GT] = ACTIONS(2623), + [anon_sym_LT_LT_LT] = ACTIONS(2623), + [anon_sym_GT_GT_GT] = ACTIONS(2623), + [anon_sym_LT_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_PIPE_GT] = ACTIONS(2623), + [anon_sym_in] = ACTIONS(2623), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2623), + [anon_sym_SLASH_SLASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2623), + [anon_sym_LT_GT] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2623), + [anon_sym_CARET_CARET] = ACTIONS(2623), + [anon_sym_DASH_GT] = ACTIONS(2623), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_fn] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2621), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2621), + [sym__not_in] = ACTIONS(2621), + [sym__quoted_atom_start] = ACTIONS(2621), + }, + [938] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_RPAREN] = ACTIONS(2611), + [aux_sym_identifier_token1] = ACTIONS(2611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2611), + [sym_unused_identifier] = ACTIONS(2611), + [anon_sym___MODULE__] = ACTIONS(2611), + [anon_sym___DIR__] = ACTIONS(2611), + [anon_sym___ENV__] = ACTIONS(2611), + [anon_sym___CALLER__] = ACTIONS(2611), + [anon_sym___STACKTRACE__] = ACTIONS(2611), + [sym_alias] = ACTIONS(2611), + [sym_integer] = ACTIONS(2611), + [sym_float] = ACTIONS(2611), + [sym_char] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2611), + [anon_sym_false] = ACTIONS(2611), + [anon_sym_nil] = ACTIONS(2611), + [sym_atom] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2611), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_RBRACK] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_GT] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_COMMA] = ACTIONS(2611), + [sym_keyword] = ACTIONS(2611), + [anon_sym_LT_LT] = ACTIONS(2611), + [anon_sym_PERCENT] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_CARET] = ACTIONS(2611), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_LT_DASH] = ACTIONS(2611), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2611), + [anon_sym_when] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_EQ_GT] = ACTIONS(2611), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_or] = ACTIONS(2611), + [anon_sym_AMP_AMP] = ACTIONS(2611), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2611), + [anon_sym_and] = ACTIONS(2611), + [anon_sym_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ] = ACTIONS(2611), + [anon_sym_EQ_TILDE] = ACTIONS(2611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_PIPE_GT] = ACTIONS(2611), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_GT_GT_GT] = ACTIONS(2611), + [anon_sym_LT_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_PIPE_GT] = ACTIONS(2611), + [anon_sym_in] = ACTIONS(2611), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2611), + [anon_sym_SLASH_SLASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_LT_GT] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_STAR_STAR] = ACTIONS(2611), + [anon_sym_CARET_CARET] = ACTIONS(2611), + [anon_sym_DASH_GT] = ACTIONS(2611), + [anon_sym_DOT] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_fn] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_LBRACK2] = ACTIONS(2609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2609), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2609), + [sym__not_in] = ACTIONS(2609), + [sym__quoted_atom_start] = ACTIONS(2609), + }, + [939] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [940] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_RBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [941] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_RBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [942] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_RBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [943] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_end] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [944] = { + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_end] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [945] = { + [ts_builtin_sym_end] = ACTIONS(2629), + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [946] = { + [ts_builtin_sym_end] = ACTIONS(2629), + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [947] = { + [ts_builtin_sym_end] = ACTIONS(2625), + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [948] = { + [aux_sym__terminator_token1] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2651), + [aux_sym_identifier_token1] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2651), + [sym_unused_identifier] = ACTIONS(2651), + [anon_sym___MODULE__] = ACTIONS(2651), + [anon_sym___DIR__] = ACTIONS(2651), + [anon_sym___ENV__] = ACTIONS(2651), + [anon_sym___CALLER__] = ACTIONS(2651), + [anon_sym___STACKTRACE__] = ACTIONS(2651), + [sym_alias] = ACTIONS(2651), + [sym_integer] = ACTIONS(2651), + [sym_float] = ACTIONS(2651), + [sym_char] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_nil] = ACTIONS(2651), + [sym_atom] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [sym_keyword] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_AT] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2651), + [anon_sym_when] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_EQ_GT] = ACTIONS(2651), + [anon_sym_EQ] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2651), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_EQ_TILDE] = ACTIONS(2651), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_PIPE_GT] = ACTIONS(2651), + [anon_sym_LT_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_LT_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_PIPE_GT] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2651), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_LT_GT] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_STAR_STAR] = ACTIONS(2651), + [anon_sym_CARET_CARET] = ACTIONS(2651), + [anon_sym_DASH_GT] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2649), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2649), + [sym__not_in] = ACTIONS(2649), + [sym__quoted_atom_start] = ACTIONS(2649), + }, + [949] = { + [ts_builtin_sym_end] = ACTIONS(2645), + [aux_sym__terminator_token1] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(2647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), + [sym_unused_identifier] = ACTIONS(2647), + [anon_sym___MODULE__] = ACTIONS(2647), + [anon_sym___DIR__] = ACTIONS(2647), + [anon_sym___ENV__] = ACTIONS(2647), + [anon_sym___CALLER__] = ACTIONS(2647), + [anon_sym___STACKTRACE__] = ACTIONS(2647), + [sym_alias] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2647), + [sym_char] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_nil] = ACTIONS(2647), + [sym_atom] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [sym_keyword] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AT] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2647), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_EQ_TILDE] = ACTIONS(2647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_PIPE_GT] = ACTIONS(2647), + [anon_sym_LT_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_PIPE_GT] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_LT_GT] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_STAR_STAR] = ACTIONS(2647), + [anon_sym_CARET_CARET] = ACTIONS(2647), + [anon_sym_DASH_GT] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_LBRACK2] = ACTIONS(2645), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2645), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2645), + [sym__not_in] = ACTIONS(2645), + [sym__quoted_atom_start] = ACTIONS(2645), + }, + [950] = { + [ts_builtin_sym_end] = ACTIONS(2617), + [aux_sym__terminator_token1] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [aux_sym_identifier_token1] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2619), + [sym_unused_identifier] = ACTIONS(2619), + [anon_sym___MODULE__] = ACTIONS(2619), + [anon_sym___DIR__] = ACTIONS(2619), + [anon_sym___ENV__] = ACTIONS(2619), + [anon_sym___CALLER__] = ACTIONS(2619), + [anon_sym___STACKTRACE__] = ACTIONS(2619), + [sym_alias] = ACTIONS(2619), + [sym_integer] = ACTIONS(2619), + [sym_float] = ACTIONS(2619), + [sym_char] = ACTIONS(2619), + [anon_sym_true] = ACTIONS(2619), + [anon_sym_false] = ACTIONS(2619), + [anon_sym_nil] = ACTIONS(2619), + [sym_atom] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2619), + [anon_sym_GT] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2619), + [sym_keyword] = ACTIONS(2619), + [anon_sym_LT_LT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2619), + [anon_sym_CARET] = ACTIONS(2619), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2619), + [anon_sym_when] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2619), + [anon_sym_EQ_GT] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2619), + [anon_sym_and] = ACTIONS(2619), + [anon_sym_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2619), + [anon_sym_EQ_TILDE] = ACTIONS(2619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_PIPE_GT] = ACTIONS(2619), + [anon_sym_LT_LT_LT] = ACTIONS(2619), + [anon_sym_GT_GT_GT] = ACTIONS(2619), + [anon_sym_LT_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_PIPE_GT] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(2619), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2619), + [anon_sym_SLASH_SLASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(2619), + [anon_sym_LT_GT] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2619), + [anon_sym_STAR_STAR] = ACTIONS(2619), + [anon_sym_CARET_CARET] = ACTIONS(2619), + [anon_sym_DASH_GT] = ACTIONS(2619), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_fn] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_LBRACK2] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2617), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2617), + [sym__not_in] = ACTIONS(2617), + [sym__quoted_atom_start] = ACTIONS(2617), + }, + [951] = { + [aux_sym__terminator_token1] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [anon_sym_RPAREN] = ACTIONS(2639), + [aux_sym_identifier_token1] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2639), + [sym_unused_identifier] = ACTIONS(2639), + [anon_sym___MODULE__] = ACTIONS(2639), + [anon_sym___DIR__] = ACTIONS(2639), + [anon_sym___ENV__] = ACTIONS(2639), + [anon_sym___CALLER__] = ACTIONS(2639), + [anon_sym___STACKTRACE__] = ACTIONS(2639), + [sym_alias] = ACTIONS(2639), + [sym_integer] = ACTIONS(2639), + [sym_float] = ACTIONS(2639), + [sym_char] = ACTIONS(2639), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [anon_sym_nil] = ACTIONS(2639), + [sym_atom] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [sym_keyword] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2639), + [anon_sym_when] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_EQ_GT] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2639), + [anon_sym_and] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_EQ_TILDE] = ACTIONS(2639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_PIPE_GT] = ACTIONS(2639), + [anon_sym_LT_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_LT_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_PIPE_GT] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2639), + [anon_sym_LT_GT] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_STAR_STAR] = ACTIONS(2639), + [anon_sym_CARET_CARET] = ACTIONS(2639), + [anon_sym_DASH_GT] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_LBRACK2] = ACTIONS(2637), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2637), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2637), + [sym__not_in] = ACTIONS(2637), + [sym__quoted_atom_start] = ACTIONS(2637), + }, + [952] = { + [ts_builtin_sym_end] = ACTIONS(2625), + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [953] = { + [ts_builtin_sym_end] = ACTIONS(2633), + [aux_sym__terminator_token1] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2633), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [954] = { + [aux_sym__terminator_token1] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [aux_sym_identifier_token1] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2639), + [sym_unused_identifier] = ACTIONS(2639), + [anon_sym___MODULE__] = ACTIONS(2639), + [anon_sym___DIR__] = ACTIONS(2639), + [anon_sym___ENV__] = ACTIONS(2639), + [anon_sym___CALLER__] = ACTIONS(2639), + [anon_sym___STACKTRACE__] = ACTIONS(2639), + [sym_alias] = ACTIONS(2639), + [sym_integer] = ACTIONS(2639), + [sym_float] = ACTIONS(2639), + [sym_char] = ACTIONS(2639), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [anon_sym_nil] = ACTIONS(2639), + [sym_atom] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [sym_keyword] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2639), + [anon_sym_when] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_EQ_GT] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2639), + [anon_sym_and] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_EQ_TILDE] = ACTIONS(2639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_PIPE_GT] = ACTIONS(2639), + [anon_sym_LT_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_LT_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_PIPE_GT] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2639), + [anon_sym_LT_GT] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_STAR_STAR] = ACTIONS(2639), + [anon_sym_CARET_CARET] = ACTIONS(2639), + [anon_sym_DASH_GT] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_end] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_LBRACK2] = ACTIONS(2637), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2637), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2637), + [sym__not_in] = ACTIONS(2637), + [sym__quoted_atom_start] = ACTIONS(2637), + }, + [955] = { + [ts_builtin_sym_end] = ACTIONS(2637), + [aux_sym__terminator_token1] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2639), + [aux_sym_identifier_token1] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2639), + [sym_unused_identifier] = ACTIONS(2639), + [anon_sym___MODULE__] = ACTIONS(2639), + [anon_sym___DIR__] = ACTIONS(2639), + [anon_sym___ENV__] = ACTIONS(2639), + [anon_sym___CALLER__] = ACTIONS(2639), + [anon_sym___STACKTRACE__] = ACTIONS(2639), + [sym_alias] = ACTIONS(2639), + [sym_integer] = ACTIONS(2639), + [sym_float] = ACTIONS(2639), + [sym_char] = ACTIONS(2639), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [anon_sym_nil] = ACTIONS(2639), + [sym_atom] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [sym_keyword] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2639), + [anon_sym_when] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_EQ_GT] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2639), + [anon_sym_and] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_EQ_TILDE] = ACTIONS(2639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_PIPE_GT] = ACTIONS(2639), + [anon_sym_LT_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_LT_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_PIPE_GT] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2639), + [anon_sym_LT_GT] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_STAR_STAR] = ACTIONS(2639), + [anon_sym_CARET_CARET] = ACTIONS(2639), + [anon_sym_DASH_GT] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_LBRACK2] = ACTIONS(2637), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2637), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2637), + [sym__not_in] = ACTIONS(2637), + [sym__quoted_atom_start] = ACTIONS(2637), + }, + [956] = { + [ts_builtin_sym_end] = ACTIONS(2649), + [aux_sym__terminator_token1] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [aux_sym_identifier_token1] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2651), + [sym_unused_identifier] = ACTIONS(2651), + [anon_sym___MODULE__] = ACTIONS(2651), + [anon_sym___DIR__] = ACTIONS(2651), + [anon_sym___ENV__] = ACTIONS(2651), + [anon_sym___CALLER__] = ACTIONS(2651), + [anon_sym___STACKTRACE__] = ACTIONS(2651), + [sym_alias] = ACTIONS(2651), + [sym_integer] = ACTIONS(2651), + [sym_float] = ACTIONS(2651), + [sym_char] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_nil] = ACTIONS(2651), + [sym_atom] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [sym_keyword] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_AT] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2651), + [anon_sym_when] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_EQ_GT] = ACTIONS(2651), + [anon_sym_EQ] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2651), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_EQ_TILDE] = ACTIONS(2651), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_PIPE_GT] = ACTIONS(2651), + [anon_sym_LT_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_LT_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_PIPE_GT] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2651), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_LT_GT] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_STAR_STAR] = ACTIONS(2651), + [anon_sym_CARET_CARET] = ACTIONS(2651), + [anon_sym_DASH_GT] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2649), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2649), + [sym__not_in] = ACTIONS(2649), + [sym__quoted_atom_start] = ACTIONS(2649), + }, + [957] = { + [ts_builtin_sym_end] = ACTIONS(2629), + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [958] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_RBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [959] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_RPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_RBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [960] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [961] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_end] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [962] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_end] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [963] = { + [aux_sym__terminator_token1] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [aux_sym_identifier_token1] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2651), + [sym_unused_identifier] = ACTIONS(2651), + [anon_sym___MODULE__] = ACTIONS(2651), + [anon_sym___DIR__] = ACTIONS(2651), + [anon_sym___ENV__] = ACTIONS(2651), + [anon_sym___CALLER__] = ACTIONS(2651), + [anon_sym___STACKTRACE__] = ACTIONS(2651), + [sym_alias] = ACTIONS(2651), + [sym_integer] = ACTIONS(2651), + [sym_float] = ACTIONS(2651), + [sym_char] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_nil] = ACTIONS(2651), + [sym_atom] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [sym_keyword] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_AT] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2651), + [anon_sym_when] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_EQ_GT] = ACTIONS(2651), + [anon_sym_EQ] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2651), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_EQ_TILDE] = ACTIONS(2651), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_PIPE_GT] = ACTIONS(2651), + [anon_sym_LT_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_LT_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_PIPE_GT] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2651), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_LT_GT] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_STAR_STAR] = ACTIONS(2651), + [anon_sym_CARET_CARET] = ACTIONS(2651), + [anon_sym_DASH_GT] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_end] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2649), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2649), + [sym__not_in] = ACTIONS(2649), + [sym__quoted_atom_start] = ACTIONS(2649), + }, + [964] = { + [ts_builtin_sym_end] = ACTIONS(2609), + [aux_sym__terminator_token1] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2611), + [aux_sym_identifier_token1] = ACTIONS(2611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2611), + [sym_unused_identifier] = ACTIONS(2611), + [anon_sym___MODULE__] = ACTIONS(2611), + [anon_sym___DIR__] = ACTIONS(2611), + [anon_sym___ENV__] = ACTIONS(2611), + [anon_sym___CALLER__] = ACTIONS(2611), + [anon_sym___STACKTRACE__] = ACTIONS(2611), + [sym_alias] = ACTIONS(2611), + [sym_integer] = ACTIONS(2611), + [sym_float] = ACTIONS(2611), + [sym_char] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2611), + [anon_sym_false] = ACTIONS(2611), + [anon_sym_nil] = ACTIONS(2611), + [sym_atom] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2611), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_GT] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_COMMA] = ACTIONS(2611), + [sym_keyword] = ACTIONS(2611), + [anon_sym_LT_LT] = ACTIONS(2611), + [anon_sym_PERCENT] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_CARET] = ACTIONS(2611), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_LT_DASH] = ACTIONS(2611), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2611), + [anon_sym_when] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_EQ_GT] = ACTIONS(2611), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_or] = ACTIONS(2611), + [anon_sym_AMP_AMP] = ACTIONS(2611), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2611), + [anon_sym_and] = ACTIONS(2611), + [anon_sym_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ] = ACTIONS(2611), + [anon_sym_EQ_TILDE] = ACTIONS(2611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_PIPE_GT] = ACTIONS(2611), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_GT_GT_GT] = ACTIONS(2611), + [anon_sym_LT_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_PIPE_GT] = ACTIONS(2611), + [anon_sym_in] = ACTIONS(2611), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2611), + [anon_sym_SLASH_SLASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_LT_GT] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_STAR_STAR] = ACTIONS(2611), + [anon_sym_CARET_CARET] = ACTIONS(2611), + [anon_sym_DASH_GT] = ACTIONS(2611), + [anon_sym_DOT] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_fn] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_LBRACK2] = ACTIONS(2609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2609), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2609), + [sym__not_in] = ACTIONS(2609), + [sym__quoted_atom_start] = ACTIONS(2609), + }, + [965] = { + [ts_builtin_sym_end] = ACTIONS(2641), + [aux_sym__terminator_token1] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [aux_sym_identifier_token1] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), + [sym_unused_identifier] = ACTIONS(2643), + [anon_sym___MODULE__] = ACTIONS(2643), + [anon_sym___DIR__] = ACTIONS(2643), + [anon_sym___ENV__] = ACTIONS(2643), + [anon_sym___CALLER__] = ACTIONS(2643), + [anon_sym___STACKTRACE__] = ACTIONS(2643), + [sym_alias] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_char] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_nil] = ACTIONS(2643), + [sym_atom] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(2643), + [sym_keyword] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_EQ_GT] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_EQ_TILDE] = ACTIONS(2643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_PIPE_GT] = ACTIONS(2643), + [anon_sym_LT_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_LT_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_PIPE_GT] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_LT_GT] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_CARET_CARET] = ACTIONS(2643), + [anon_sym_DASH_GT] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_LBRACK2] = ACTIONS(2641), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2641), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2641), + [sym__not_in] = ACTIONS(2641), + [sym__quoted_atom_start] = ACTIONS(2641), + }, + [966] = { + [aux_sym__terminator_token1] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_RPAREN] = ACTIONS(2611), + [aux_sym_identifier_token1] = ACTIONS(2611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2611), + [sym_unused_identifier] = ACTIONS(2611), + [anon_sym___MODULE__] = ACTIONS(2611), + [anon_sym___DIR__] = ACTIONS(2611), + [anon_sym___ENV__] = ACTIONS(2611), + [anon_sym___CALLER__] = ACTIONS(2611), + [anon_sym___STACKTRACE__] = ACTIONS(2611), + [sym_alias] = ACTIONS(2611), + [sym_integer] = ACTIONS(2611), + [sym_float] = ACTIONS(2611), + [sym_char] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2611), + [anon_sym_false] = ACTIONS(2611), + [anon_sym_nil] = ACTIONS(2611), + [sym_atom] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2611), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_GT] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_COMMA] = ACTIONS(2611), + [sym_keyword] = ACTIONS(2611), + [anon_sym_LT_LT] = ACTIONS(2611), + [anon_sym_PERCENT] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_CARET] = ACTIONS(2611), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_LT_DASH] = ACTIONS(2611), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2611), + [anon_sym_when] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_EQ_GT] = ACTIONS(2611), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_or] = ACTIONS(2611), + [anon_sym_AMP_AMP] = ACTIONS(2611), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2611), + [anon_sym_and] = ACTIONS(2611), + [anon_sym_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ] = ACTIONS(2611), + [anon_sym_EQ_TILDE] = ACTIONS(2611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_PIPE_GT] = ACTIONS(2611), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_GT_GT_GT] = ACTIONS(2611), + [anon_sym_LT_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_PIPE_GT] = ACTIONS(2611), + [anon_sym_in] = ACTIONS(2611), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2611), + [anon_sym_SLASH_SLASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_LT_GT] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_STAR_STAR] = ACTIONS(2611), + [anon_sym_CARET_CARET] = ACTIONS(2611), + [anon_sym_DASH_GT] = ACTIONS(2611), + [anon_sym_DOT] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_fn] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_LBRACK2] = ACTIONS(2609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2609), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2609), + [sym__not_in] = ACTIONS(2609), + [sym__quoted_atom_start] = ACTIONS(2609), + }, + [967] = { + [ts_builtin_sym_end] = ACTIONS(2613), + [aux_sym__terminator_token1] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2613), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [968] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_end] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [969] = { + [aux_sym__terminator_token1] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2623), + [aux_sym_identifier_token1] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2623), + [sym_unused_identifier] = ACTIONS(2623), + [anon_sym___MODULE__] = ACTIONS(2623), + [anon_sym___DIR__] = ACTIONS(2623), + [anon_sym___ENV__] = ACTIONS(2623), + [anon_sym___CALLER__] = ACTIONS(2623), + [anon_sym___STACKTRACE__] = ACTIONS(2623), + [sym_alias] = ACTIONS(2623), + [sym_integer] = ACTIONS(2623), + [sym_float] = ACTIONS(2623), + [sym_char] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [anon_sym_nil] = ACTIONS(2623), + [sym_atom] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2623), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_GT] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2623), + [anon_sym_COMMA] = ACTIONS(2623), + [sym_keyword] = ACTIONS(2623), + [anon_sym_LT_LT] = ACTIONS(2623), + [anon_sym_PERCENT] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_BANG] = ACTIONS(2623), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_LT_DASH] = ACTIONS(2623), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2623), + [anon_sym_when] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2623), + [anon_sym_EQ_GT] = ACTIONS(2623), + [anon_sym_EQ] = ACTIONS(2623), + [anon_sym_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_or] = ACTIONS(2623), + [anon_sym_AMP_AMP] = ACTIONS(2623), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2623), + [anon_sym_and] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ] = ACTIONS(2623), + [anon_sym_EQ_TILDE] = ACTIONS(2623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2623), + [anon_sym_LT_EQ] = ACTIONS(2623), + [anon_sym_GT_EQ] = ACTIONS(2623), + [anon_sym_PIPE_GT] = ACTIONS(2623), + [anon_sym_LT_LT_LT] = ACTIONS(2623), + [anon_sym_GT_GT_GT] = ACTIONS(2623), + [anon_sym_LT_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_PIPE_GT] = ACTIONS(2623), + [anon_sym_in] = ACTIONS(2623), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2623), + [anon_sym_SLASH_SLASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2623), + [anon_sym_LT_GT] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2623), + [anon_sym_CARET_CARET] = ACTIONS(2623), + [anon_sym_DASH_GT] = ACTIONS(2623), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_end] = ACTIONS(2623), + [anon_sym_fn] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2621), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2621), + [sym__not_in] = ACTIONS(2621), + [sym__quoted_atom_start] = ACTIONS(2621), + }, + [970] = { + [aux_sym__terminator_token1] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_RPAREN] = ACTIONS(2643), + [aux_sym_identifier_token1] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), + [sym_unused_identifier] = ACTIONS(2643), + [anon_sym___MODULE__] = ACTIONS(2643), + [anon_sym___DIR__] = ACTIONS(2643), + [anon_sym___ENV__] = ACTIONS(2643), + [anon_sym___CALLER__] = ACTIONS(2643), + [anon_sym___STACKTRACE__] = ACTIONS(2643), + [sym_alias] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_char] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_nil] = ACTIONS(2643), + [sym_atom] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(2643), + [sym_keyword] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_EQ_GT] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_EQ_TILDE] = ACTIONS(2643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_PIPE_GT] = ACTIONS(2643), + [anon_sym_LT_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_LT_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_PIPE_GT] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_LT_GT] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_CARET_CARET] = ACTIONS(2643), + [anon_sym_DASH_GT] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_LBRACK2] = ACTIONS(2641), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2641), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2641), + [sym__not_in] = ACTIONS(2641), + [sym__quoted_atom_start] = ACTIONS(2641), + }, + [971] = { + [aux_sym__terminator_token1] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [aux_sym_identifier_token1] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2619), + [sym_unused_identifier] = ACTIONS(2619), + [anon_sym___MODULE__] = ACTIONS(2619), + [anon_sym___DIR__] = ACTIONS(2619), + [anon_sym___ENV__] = ACTIONS(2619), + [anon_sym___CALLER__] = ACTIONS(2619), + [anon_sym___STACKTRACE__] = ACTIONS(2619), + [sym_alias] = ACTIONS(2619), + [sym_integer] = ACTIONS(2619), + [sym_float] = ACTIONS(2619), + [sym_char] = ACTIONS(2619), + [anon_sym_true] = ACTIONS(2619), + [anon_sym_false] = ACTIONS(2619), + [anon_sym_nil] = ACTIONS(2619), + [sym_atom] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2619), + [anon_sym_GT] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2619), + [sym_keyword] = ACTIONS(2619), + [anon_sym_LT_LT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2619), + [anon_sym_CARET] = ACTIONS(2619), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2619), + [anon_sym_when] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2619), + [anon_sym_EQ_GT] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2619), + [anon_sym_and] = ACTIONS(2619), + [anon_sym_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2619), + [anon_sym_EQ_TILDE] = ACTIONS(2619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_PIPE_GT] = ACTIONS(2619), + [anon_sym_LT_LT_LT] = ACTIONS(2619), + [anon_sym_GT_GT_GT] = ACTIONS(2619), + [anon_sym_LT_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_PIPE_GT] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(2619), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2619), + [anon_sym_SLASH_SLASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(2619), + [anon_sym_LT_GT] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2619), + [anon_sym_STAR_STAR] = ACTIONS(2619), + [anon_sym_CARET_CARET] = ACTIONS(2619), + [anon_sym_DASH_GT] = ACTIONS(2619), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_end] = ACTIONS(2619), + [anon_sym_fn] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_LBRACK2] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2617), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2617), + [sym__not_in] = ACTIONS(2617), + [sym__quoted_atom_start] = ACTIONS(2617), + }, + [972] = { + [aux_sym__terminator_token1] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(2647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), + [sym_unused_identifier] = ACTIONS(2647), + [anon_sym___MODULE__] = ACTIONS(2647), + [anon_sym___DIR__] = ACTIONS(2647), + [anon_sym___ENV__] = ACTIONS(2647), + [anon_sym___CALLER__] = ACTIONS(2647), + [anon_sym___STACKTRACE__] = ACTIONS(2647), + [sym_alias] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2647), + [sym_char] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_nil] = ACTIONS(2647), + [sym_atom] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [sym_keyword] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AT] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2647), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_EQ_TILDE] = ACTIONS(2647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_PIPE_GT] = ACTIONS(2647), + [anon_sym_LT_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_PIPE_GT] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_LT_GT] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_STAR_STAR] = ACTIONS(2647), + [anon_sym_CARET_CARET] = ACTIONS(2647), + [anon_sym_DASH_GT] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_end] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_LBRACK2] = ACTIONS(2645), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2645), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2645), + [sym__not_in] = ACTIONS(2645), + [sym__quoted_atom_start] = ACTIONS(2645), + }, + [973] = { + [aux_sym__terminator_token1] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_end] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2613), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [974] = { + [ts_builtin_sym_end] = ACTIONS(2621), + [aux_sym__terminator_token1] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2623), + [aux_sym_identifier_token1] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2623), + [sym_unused_identifier] = ACTIONS(2623), + [anon_sym___MODULE__] = ACTIONS(2623), + [anon_sym___DIR__] = ACTIONS(2623), + [anon_sym___ENV__] = ACTIONS(2623), + [anon_sym___CALLER__] = ACTIONS(2623), + [anon_sym___STACKTRACE__] = ACTIONS(2623), + [sym_alias] = ACTIONS(2623), + [sym_integer] = ACTIONS(2623), + [sym_float] = ACTIONS(2623), + [sym_char] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [anon_sym_nil] = ACTIONS(2623), + [sym_atom] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2623), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_GT] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2623), + [anon_sym_COMMA] = ACTIONS(2623), + [sym_keyword] = ACTIONS(2623), + [anon_sym_LT_LT] = ACTIONS(2623), + [anon_sym_PERCENT] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_BANG] = ACTIONS(2623), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_LT_DASH] = ACTIONS(2623), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2623), + [anon_sym_when] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2623), + [anon_sym_EQ_GT] = ACTIONS(2623), + [anon_sym_EQ] = ACTIONS(2623), + [anon_sym_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_or] = ACTIONS(2623), + [anon_sym_AMP_AMP] = ACTIONS(2623), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2623), + [anon_sym_and] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ] = ACTIONS(2623), + [anon_sym_EQ_TILDE] = ACTIONS(2623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2623), + [anon_sym_LT_EQ] = ACTIONS(2623), + [anon_sym_GT_EQ] = ACTIONS(2623), + [anon_sym_PIPE_GT] = ACTIONS(2623), + [anon_sym_LT_LT_LT] = ACTIONS(2623), + [anon_sym_GT_GT_GT] = ACTIONS(2623), + [anon_sym_LT_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_PIPE_GT] = ACTIONS(2623), + [anon_sym_in] = ACTIONS(2623), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2623), + [anon_sym_SLASH_SLASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2623), + [anon_sym_LT_GT] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2623), + [anon_sym_CARET_CARET] = ACTIONS(2623), + [anon_sym_DASH_GT] = ACTIONS(2623), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_fn] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2621), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2621), + [sym__not_in] = ACTIONS(2621), + [sym__quoted_atom_start] = ACTIONS(2621), + }, + [975] = { + [ts_builtin_sym_end] = ACTIONS(2625), + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [976] = { + [aux_sym__terminator_token1] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_end] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2633), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [977] = { + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_end] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [978] = { + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_end] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [979] = { + [aux_sym__terminator_token1] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(2647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), + [sym_unused_identifier] = ACTIONS(2647), + [anon_sym___MODULE__] = ACTIONS(2647), + [anon_sym___DIR__] = ACTIONS(2647), + [anon_sym___ENV__] = ACTIONS(2647), + [anon_sym___CALLER__] = ACTIONS(2647), + [anon_sym___STACKTRACE__] = ACTIONS(2647), + [sym_alias] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2647), + [sym_char] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_nil] = ACTIONS(2647), + [sym_atom] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [sym_keyword] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AT] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2647), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_EQ_TILDE] = ACTIONS(2647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_PIPE_GT] = ACTIONS(2647), + [anon_sym_LT_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_PIPE_GT] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_LT_GT] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_STAR_STAR] = ACTIONS(2647), + [anon_sym_CARET_CARET] = ACTIONS(2647), + [anon_sym_DASH_GT] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_LBRACK2] = ACTIONS(2645), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2645), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2645), + [sym__not_in] = ACTIONS(2645), + [sym__quoted_atom_start] = ACTIONS(2645), + }, + [980] = { + [aux_sym__terminator_token1] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_RPAREN] = ACTIONS(2619), + [aux_sym_identifier_token1] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2619), + [sym_unused_identifier] = ACTIONS(2619), + [anon_sym___MODULE__] = ACTIONS(2619), + [anon_sym___DIR__] = ACTIONS(2619), + [anon_sym___ENV__] = ACTIONS(2619), + [anon_sym___CALLER__] = ACTIONS(2619), + [anon_sym___STACKTRACE__] = ACTIONS(2619), + [sym_alias] = ACTIONS(2619), + [sym_integer] = ACTIONS(2619), + [sym_float] = ACTIONS(2619), + [sym_char] = ACTIONS(2619), + [anon_sym_true] = ACTIONS(2619), + [anon_sym_false] = ACTIONS(2619), + [anon_sym_nil] = ACTIONS(2619), + [sym_atom] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2619), + [anon_sym_GT] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2619), + [sym_keyword] = ACTIONS(2619), + [anon_sym_LT_LT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2619), + [anon_sym_CARET] = ACTIONS(2619), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2619), + [anon_sym_when] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2619), + [anon_sym_EQ_GT] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2619), + [anon_sym_and] = ACTIONS(2619), + [anon_sym_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2619), + [anon_sym_EQ_TILDE] = ACTIONS(2619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_PIPE_GT] = ACTIONS(2619), + [anon_sym_LT_LT_LT] = ACTIONS(2619), + [anon_sym_GT_GT_GT] = ACTIONS(2619), + [anon_sym_LT_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_PIPE_GT] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(2619), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2619), + [anon_sym_SLASH_SLASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(2619), + [anon_sym_LT_GT] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2619), + [anon_sym_STAR_STAR] = ACTIONS(2619), + [anon_sym_CARET_CARET] = ACTIONS(2619), + [anon_sym_DASH_GT] = ACTIONS(2619), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_fn] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_LBRACK2] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2617), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2617), + [sym__not_in] = ACTIONS(2617), + [sym__quoted_atom_start] = ACTIONS(2617), + }, + [981] = { + [aux_sym__terminator_token1] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_RPAREN] = ACTIONS(2623), + [aux_sym_identifier_token1] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2623), + [sym_unused_identifier] = ACTIONS(2623), + [anon_sym___MODULE__] = ACTIONS(2623), + [anon_sym___DIR__] = ACTIONS(2623), + [anon_sym___ENV__] = ACTIONS(2623), + [anon_sym___CALLER__] = ACTIONS(2623), + [anon_sym___STACKTRACE__] = ACTIONS(2623), + [sym_alias] = ACTIONS(2623), + [sym_integer] = ACTIONS(2623), + [sym_float] = ACTIONS(2623), + [sym_char] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [anon_sym_nil] = ACTIONS(2623), + [sym_atom] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2623), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_GT] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2623), + [anon_sym_COMMA] = ACTIONS(2623), + [sym_keyword] = ACTIONS(2623), + [anon_sym_LT_LT] = ACTIONS(2623), + [anon_sym_PERCENT] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_BANG] = ACTIONS(2623), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_LT_DASH] = ACTIONS(2623), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2623), + [anon_sym_when] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2623), + [anon_sym_EQ_GT] = ACTIONS(2623), + [anon_sym_EQ] = ACTIONS(2623), + [anon_sym_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_or] = ACTIONS(2623), + [anon_sym_AMP_AMP] = ACTIONS(2623), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2623), + [anon_sym_and] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ] = ACTIONS(2623), + [anon_sym_EQ_TILDE] = ACTIONS(2623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2623), + [anon_sym_LT_EQ] = ACTIONS(2623), + [anon_sym_GT_EQ] = ACTIONS(2623), + [anon_sym_PIPE_GT] = ACTIONS(2623), + [anon_sym_LT_LT_LT] = ACTIONS(2623), + [anon_sym_GT_GT_GT] = ACTIONS(2623), + [anon_sym_LT_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_PIPE_GT] = ACTIONS(2623), + [anon_sym_in] = ACTIONS(2623), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2623), + [anon_sym_SLASH_SLASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2623), + [anon_sym_LT_GT] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2623), + [anon_sym_CARET_CARET] = ACTIONS(2623), + [anon_sym_DASH_GT] = ACTIONS(2623), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_fn] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2621), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2621), + [sym__not_in] = ACTIONS(2621), + [sym__quoted_atom_start] = ACTIONS(2621), + }, + [982] = { + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [983] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [984] = { + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [985] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [986] = { + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_RPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [987] = { + [aux_sym__terminator_token1] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [aux_sym_identifier_token1] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), + [sym_unused_identifier] = ACTIONS(2643), + [anon_sym___MODULE__] = ACTIONS(2643), + [anon_sym___DIR__] = ACTIONS(2643), + [anon_sym___ENV__] = ACTIONS(2643), + [anon_sym___CALLER__] = ACTIONS(2643), + [anon_sym___STACKTRACE__] = ACTIONS(2643), + [sym_alias] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_char] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_nil] = ACTIONS(2643), + [sym_atom] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(2643), + [sym_keyword] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_EQ_GT] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_EQ_TILDE] = ACTIONS(2643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_PIPE_GT] = ACTIONS(2643), + [anon_sym_LT_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_LT_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_PIPE_GT] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_LT_GT] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_CARET_CARET] = ACTIONS(2643), + [anon_sym_DASH_GT] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_end] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_LBRACK2] = ACTIONS(2641), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2641), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2641), + [sym__not_in] = ACTIONS(2641), + [sym__quoted_atom_start] = ACTIONS(2641), + }, + [988] = { + [ts_builtin_sym_end] = ACTIONS(2629), + [aux_sym__terminator_token1] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [989] = { + [aux_sym__terminator_token1] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2611), + [aux_sym_identifier_token1] = ACTIONS(2611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2611), + [sym_unused_identifier] = ACTIONS(2611), + [anon_sym___MODULE__] = ACTIONS(2611), + [anon_sym___DIR__] = ACTIONS(2611), + [anon_sym___ENV__] = ACTIONS(2611), + [anon_sym___CALLER__] = ACTIONS(2611), + [anon_sym___STACKTRACE__] = ACTIONS(2611), + [sym_alias] = ACTIONS(2611), + [sym_integer] = ACTIONS(2611), + [sym_float] = ACTIONS(2611), + [sym_char] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2611), + [anon_sym_false] = ACTIONS(2611), + [anon_sym_nil] = ACTIONS(2611), + [sym_atom] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2611), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_GT] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_COMMA] = ACTIONS(2611), + [sym_keyword] = ACTIONS(2611), + [anon_sym_LT_LT] = ACTIONS(2611), + [anon_sym_PERCENT] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_CARET] = ACTIONS(2611), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_LT_DASH] = ACTIONS(2611), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2611), + [anon_sym_when] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_EQ_GT] = ACTIONS(2611), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_or] = ACTIONS(2611), + [anon_sym_AMP_AMP] = ACTIONS(2611), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2611), + [anon_sym_and] = ACTIONS(2611), + [anon_sym_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ] = ACTIONS(2611), + [anon_sym_EQ_TILDE] = ACTIONS(2611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_PIPE_GT] = ACTIONS(2611), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_GT_GT_GT] = ACTIONS(2611), + [anon_sym_LT_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_PIPE_GT] = ACTIONS(2611), + [anon_sym_in] = ACTIONS(2611), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2611), + [anon_sym_SLASH_SLASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_LT_GT] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_STAR_STAR] = ACTIONS(2611), + [anon_sym_CARET_CARET] = ACTIONS(2611), + [anon_sym_DASH_GT] = ACTIONS(2611), + [anon_sym_DOT] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_end] = ACTIONS(2611), + [anon_sym_fn] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_LBRACK2] = ACTIONS(2609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2609), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2609), + [sym__not_in] = ACTIONS(2609), + [sym__quoted_atom_start] = ACTIONS(2609), + }, + [990] = { + [aux_sym__terminator_token1] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [991] = { + [aux_sym__terminator_token1] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2633), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [992] = { + [aux_sym__terminator_token1] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_RPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2613), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [993] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2639), + [aux_sym_identifier_token1] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2639), + [sym_unused_identifier] = ACTIONS(2639), + [anon_sym___MODULE__] = ACTIONS(2639), + [anon_sym___DIR__] = ACTIONS(2639), + [anon_sym___ENV__] = ACTIONS(2639), + [anon_sym___CALLER__] = ACTIONS(2639), + [anon_sym___STACKTRACE__] = ACTIONS(2639), + [sym_alias] = ACTIONS(2639), + [sym_integer] = ACTIONS(2639), + [sym_float] = ACTIONS(2639), + [sym_char] = ACTIONS(2639), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [anon_sym_nil] = ACTIONS(2639), + [sym_atom] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2639), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2639), + [anon_sym_COMMA] = ACTIONS(2639), + [sym_keyword] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_PERCENT] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2639), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_LT_DASH] = ACTIONS(2639), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2639), + [anon_sym_when] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2639), + [anon_sym_EQ_GT] = ACTIONS(2639), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2639), + [anon_sym_or] = ACTIONS(2639), + [anon_sym_AMP_AMP] = ACTIONS(2639), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2639), + [anon_sym_and] = ACTIONS(2639), + [anon_sym_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ] = ACTIONS(2639), + [anon_sym_EQ_TILDE] = ACTIONS(2639), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2639), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2639), + [anon_sym_PIPE_GT] = ACTIONS(2639), + [anon_sym_LT_LT_LT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2639), + [anon_sym_LT_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE] = ACTIONS(2639), + [anon_sym_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_TILDE_GT] = ACTIONS(2639), + [anon_sym_LT_PIPE_GT] = ACTIONS(2639), + [anon_sym_in] = ACTIONS(2639), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2639), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2639), + [anon_sym_DOT_DOT] = ACTIONS(2639), + [anon_sym_LT_GT] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2639), + [anon_sym_STAR_STAR] = ACTIONS(2639), + [anon_sym_CARET_CARET] = ACTIONS(2639), + [anon_sym_DASH_GT] = ACTIONS(2639), + [anon_sym_DOT] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_LBRACK2] = ACTIONS(2637), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2637), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2637), + [sym__not_in] = ACTIONS(2637), + [sym__quoted_atom_start] = ACTIONS(2637), + }, + [994] = { + [aux_sym__terminator_token1] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_RPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [995] = { + [aux_sym__terminator_token1] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_end] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [996] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2613), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [997] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [998] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2633), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [999] = { + [ts_builtin_sym_end] = ACTIONS(2613), + [aux_sym__terminator_token1] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [1000] = { + [aux_sym__terminator_token1] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_end] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [1001] = { + [ts_builtin_sym_end] = ACTIONS(2633), + [aux_sym__terminator_token1] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [1002] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(2647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2647), + [sym_unused_identifier] = ACTIONS(2647), + [anon_sym___MODULE__] = ACTIONS(2647), + [anon_sym___DIR__] = ACTIONS(2647), + [anon_sym___ENV__] = ACTIONS(2647), + [anon_sym___CALLER__] = ACTIONS(2647), + [anon_sym___STACKTRACE__] = ACTIONS(2647), + [sym_alias] = ACTIONS(2647), + [sym_integer] = ACTIONS(2647), + [sym_float] = ACTIONS(2647), + [sym_char] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_nil] = ACTIONS(2647), + [sym_atom] = ACTIONS(2647), + [anon_sym_DQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2647), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_GT] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2647), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [sym_keyword] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_AT] = ACTIONS(2647), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2647), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2647), + [anon_sym_and] = ACTIONS(2647), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_EQ_TILDE] = ACTIONS(2647), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_PIPE_GT] = ACTIONS(2647), + [anon_sym_LT_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_LT_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE] = ACTIONS(2647), + [anon_sym_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_TILDE_GT] = ACTIONS(2647), + [anon_sym_LT_PIPE_GT] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2647), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2647), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_LT_GT] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_STAR_STAR] = ACTIONS(2647), + [anon_sym_CARET_CARET] = ACTIONS(2647), + [anon_sym_DASH_GT] = ACTIONS(2647), + [anon_sym_DOT] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_LBRACK2] = ACTIONS(2645), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2645), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2645), + [sym__not_in] = ACTIONS(2645), + [sym__quoted_atom_start] = ACTIONS(2645), + }, + [1003] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2619), + [aux_sym_identifier_token1] = ACTIONS(2619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2619), + [sym_unused_identifier] = ACTIONS(2619), + [anon_sym___MODULE__] = ACTIONS(2619), + [anon_sym___DIR__] = ACTIONS(2619), + [anon_sym___ENV__] = ACTIONS(2619), + [anon_sym___CALLER__] = ACTIONS(2619), + [anon_sym___STACKTRACE__] = ACTIONS(2619), + [sym_alias] = ACTIONS(2619), + [sym_integer] = ACTIONS(2619), + [sym_float] = ACTIONS(2619), + [sym_char] = ACTIONS(2619), + [anon_sym_true] = ACTIONS(2619), + [anon_sym_false] = ACTIONS(2619), + [anon_sym_nil] = ACTIONS(2619), + [sym_atom] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE] = ACTIONS(2619), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2619), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2619), + [anon_sym_GT] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2619), + [anon_sym_SLASH] = ACTIONS(2619), + [anon_sym_TILDE] = ACTIONS(2619), + [anon_sym_COMMA] = ACTIONS(2619), + [sym_keyword] = ACTIONS(2619), + [anon_sym_LT_LT] = ACTIONS(2619), + [anon_sym_GT_GT] = ACTIONS(2619), + [anon_sym_PERCENT] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2619), + [anon_sym_CARET] = ACTIONS(2619), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_AT] = ACTIONS(2619), + [anon_sym_LT_DASH] = ACTIONS(2619), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2619), + [anon_sym_when] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2619), + [anon_sym_EQ_GT] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(2619), + [anon_sym_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2619), + [anon_sym_or] = ACTIONS(2619), + [anon_sym_AMP_AMP] = ACTIONS(2619), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2619), + [anon_sym_and] = ACTIONS(2619), + [anon_sym_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ] = ACTIONS(2619), + [anon_sym_EQ_TILDE] = ACTIONS(2619), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2619), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2619), + [anon_sym_LT_EQ] = ACTIONS(2619), + [anon_sym_GT_EQ] = ACTIONS(2619), + [anon_sym_PIPE_GT] = ACTIONS(2619), + [anon_sym_LT_LT_LT] = ACTIONS(2619), + [anon_sym_GT_GT_GT] = ACTIONS(2619), + [anon_sym_LT_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE] = ACTIONS(2619), + [anon_sym_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_TILDE_GT] = ACTIONS(2619), + [anon_sym_LT_PIPE_GT] = ACTIONS(2619), + [anon_sym_in] = ACTIONS(2619), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2619), + [anon_sym_SLASH_SLASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2619), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2619), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(2619), + [anon_sym_LT_GT] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2619), + [anon_sym_STAR_STAR] = ACTIONS(2619), + [anon_sym_CARET_CARET] = ACTIONS(2619), + [anon_sym_DASH_GT] = ACTIONS(2619), + [anon_sym_DOT] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_fn] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_LBRACK2] = ACTIONS(2617), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2617), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2617), + [sym__not_in] = ACTIONS(2617), + [sym__quoted_atom_start] = ACTIONS(2617), + }, + [1004] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2651), + [aux_sym_identifier_token1] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2651), + [sym_unused_identifier] = ACTIONS(2651), + [anon_sym___MODULE__] = ACTIONS(2651), + [anon_sym___DIR__] = ACTIONS(2651), + [anon_sym___ENV__] = ACTIONS(2651), + [anon_sym___CALLER__] = ACTIONS(2651), + [anon_sym___STACKTRACE__] = ACTIONS(2651), + [sym_alias] = ACTIONS(2651), + [sym_integer] = ACTIONS(2651), + [sym_float] = ACTIONS(2651), + [sym_char] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_nil] = ACTIONS(2651), + [sym_atom] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2651), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [sym_keyword] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_AT] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2651), + [anon_sym_when] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_EQ_GT] = ACTIONS(2651), + [anon_sym_EQ] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2651), + [anon_sym_and] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_EQ_TILDE] = ACTIONS(2651), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_PIPE_GT] = ACTIONS(2651), + [anon_sym_LT_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_LT_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE] = ACTIONS(2651), + [anon_sym_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_TILDE_GT] = ACTIONS(2651), + [anon_sym_LT_PIPE_GT] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2651), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_LT_GT] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_STAR_STAR] = ACTIONS(2651), + [anon_sym_CARET_CARET] = ACTIONS(2651), + [anon_sym_DASH_GT] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2649), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2649), + [sym__not_in] = ACTIONS(2649), + [sym__quoted_atom_start] = ACTIONS(2649), + }, + [1005] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2623), + [aux_sym_identifier_token1] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2623), + [sym_unused_identifier] = ACTIONS(2623), + [anon_sym___MODULE__] = ACTIONS(2623), + [anon_sym___DIR__] = ACTIONS(2623), + [anon_sym___ENV__] = ACTIONS(2623), + [anon_sym___CALLER__] = ACTIONS(2623), + [anon_sym___STACKTRACE__] = ACTIONS(2623), + [sym_alias] = ACTIONS(2623), + [sym_integer] = ACTIONS(2623), + [sym_float] = ACTIONS(2623), + [sym_char] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [anon_sym_nil] = ACTIONS(2623), + [sym_atom] = ACTIONS(2623), + [anon_sym_DQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE] = ACTIONS(2623), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2623), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_GT] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2623), + [anon_sym_COMMA] = ACTIONS(2623), + [sym_keyword] = ACTIONS(2623), + [anon_sym_LT_LT] = ACTIONS(2623), + [anon_sym_GT_GT] = ACTIONS(2623), + [anon_sym_PERCENT] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_BANG] = ACTIONS(2623), + [anon_sym_CARET] = ACTIONS(2623), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_LT_DASH] = ACTIONS(2623), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2623), + [anon_sym_when] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2623), + [anon_sym_EQ_GT] = ACTIONS(2623), + [anon_sym_EQ] = ACTIONS(2623), + [anon_sym_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2623), + [anon_sym_or] = ACTIONS(2623), + [anon_sym_AMP_AMP] = ACTIONS(2623), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2623), + [anon_sym_and] = ACTIONS(2623), + [anon_sym_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ] = ACTIONS(2623), + [anon_sym_EQ_TILDE] = ACTIONS(2623), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2623), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2623), + [anon_sym_LT_EQ] = ACTIONS(2623), + [anon_sym_GT_EQ] = ACTIONS(2623), + [anon_sym_PIPE_GT] = ACTIONS(2623), + [anon_sym_LT_LT_LT] = ACTIONS(2623), + [anon_sym_GT_GT_GT] = ACTIONS(2623), + [anon_sym_LT_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE] = ACTIONS(2623), + [anon_sym_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_TILDE_GT] = ACTIONS(2623), + [anon_sym_LT_PIPE_GT] = ACTIONS(2623), + [anon_sym_in] = ACTIONS(2623), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2623), + [anon_sym_SLASH_SLASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2623), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2623), + [anon_sym_LT_GT] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2623), + [anon_sym_STAR_STAR] = ACTIONS(2623), + [anon_sym_CARET_CARET] = ACTIONS(2623), + [anon_sym_DASH_GT] = ACTIONS(2623), + [anon_sym_DOT] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_fn] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_LBRACK2] = ACTIONS(2621), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2621), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2621), + [sym__not_in] = ACTIONS(2621), + [sym__quoted_atom_start] = ACTIONS(2621), + }, + [1006] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [1007] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [1008] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [1009] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [1010] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2631), + [aux_sym_identifier_token1] = ACTIONS(2631), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2631), + [sym_unused_identifier] = ACTIONS(2631), + [anon_sym___MODULE__] = ACTIONS(2631), + [anon_sym___DIR__] = ACTIONS(2631), + [anon_sym___ENV__] = ACTIONS(2631), + [anon_sym___CALLER__] = ACTIONS(2631), + [anon_sym___STACKTRACE__] = ACTIONS(2631), + [sym_alias] = ACTIONS(2631), + [sym_integer] = ACTIONS(2631), + [sym_float] = ACTIONS(2631), + [sym_char] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2631), + [anon_sym_false] = ACTIONS(2631), + [anon_sym_nil] = ACTIONS(2631), + [sym_atom] = ACTIONS(2631), + [anon_sym_DQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2631), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2631), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_GT] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_SLASH] = ACTIONS(2631), + [anon_sym_TILDE] = ACTIONS(2631), + [anon_sym_COMMA] = ACTIONS(2631), + [sym_keyword] = ACTIONS(2631), + [anon_sym_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT] = ACTIONS(2631), + [anon_sym_PERCENT] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_CARET] = ACTIONS(2631), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_AT] = ACTIONS(2631), + [anon_sym_LT_DASH] = ACTIONS(2631), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2631), + [anon_sym_when] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_EQ_GT] = ACTIONS(2631), + [anon_sym_EQ] = ACTIONS(2631), + [anon_sym_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2631), + [anon_sym_or] = ACTIONS(2631), + [anon_sym_AMP_AMP] = ACTIONS(2631), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2631), + [anon_sym_and] = ACTIONS(2631), + [anon_sym_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ] = ACTIONS(2631), + [anon_sym_EQ_TILDE] = ACTIONS(2631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2631), + [anon_sym_LT_EQ] = ACTIONS(2631), + [anon_sym_GT_EQ] = ACTIONS(2631), + [anon_sym_PIPE_GT] = ACTIONS(2631), + [anon_sym_LT_LT_LT] = ACTIONS(2631), + [anon_sym_GT_GT_GT] = ACTIONS(2631), + [anon_sym_LT_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE] = ACTIONS(2631), + [anon_sym_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_TILDE_GT] = ACTIONS(2631), + [anon_sym_LT_PIPE_GT] = ACTIONS(2631), + [anon_sym_in] = ACTIONS(2631), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2631), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2631), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_LT_GT] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_STAR_STAR] = ACTIONS(2631), + [anon_sym_CARET_CARET] = ACTIONS(2631), + [anon_sym_DASH_GT] = ACTIONS(2631), + [anon_sym_DOT] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_fn] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_LBRACK2] = ACTIONS(2629), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2629), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2629), + [sym__not_in] = ACTIONS(2629), + [sym__quoted_atom_start] = ACTIONS(2629), + }, + [1011] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2627), + [aux_sym_identifier_token1] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2627), + [sym_unused_identifier] = ACTIONS(2627), + [anon_sym___MODULE__] = ACTIONS(2627), + [anon_sym___DIR__] = ACTIONS(2627), + [anon_sym___ENV__] = ACTIONS(2627), + [anon_sym___CALLER__] = ACTIONS(2627), + [anon_sym___STACKTRACE__] = ACTIONS(2627), + [sym_alias] = ACTIONS(2627), + [sym_integer] = ACTIONS(2627), + [sym_float] = ACTIONS(2627), + [sym_char] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [anon_sym_nil] = ACTIONS(2627), + [sym_atom] = ACTIONS(2627), + [anon_sym_DQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2627), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2627), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2627), + [anon_sym_COMMA] = ACTIONS(2627), + [sym_keyword] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_PERCENT] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2627), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_LT_DASH] = ACTIONS(2627), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2627), + [anon_sym_when] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_EQ_GT] = ACTIONS(2627), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_or] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2627), + [anon_sym_and] = ACTIONS(2627), + [anon_sym_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ] = ACTIONS(2627), + [anon_sym_EQ_TILDE] = ACTIONS(2627), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2627), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2627), + [anon_sym_PIPE_GT] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2627), + [anon_sym_LT_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE] = ACTIONS(2627), + [anon_sym_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_TILDE_GT] = ACTIONS(2627), + [anon_sym_LT_PIPE_GT] = ACTIONS(2627), + [anon_sym_in] = ACTIONS(2627), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2627), + [anon_sym_SLASH_SLASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2627), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_LT_GT] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_STAR_STAR] = ACTIONS(2627), + [anon_sym_CARET_CARET] = ACTIONS(2627), + [anon_sym_DASH_GT] = ACTIONS(2627), + [anon_sym_DOT] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_fn] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_LBRACK2] = ACTIONS(2625), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2625), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2625), + [sym__not_in] = ACTIONS(2625), + [sym__quoted_atom_start] = ACTIONS(2625), + }, + [1012] = { + [aux_sym__terminator_token1] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [1013] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2643), + [aux_sym_identifier_token1] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), + [sym_unused_identifier] = ACTIONS(2643), + [anon_sym___MODULE__] = ACTIONS(2643), + [anon_sym___DIR__] = ACTIONS(2643), + [anon_sym___ENV__] = ACTIONS(2643), + [anon_sym___CALLER__] = ACTIONS(2643), + [anon_sym___STACKTRACE__] = ACTIONS(2643), + [sym_alias] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_char] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_nil] = ACTIONS(2643), + [sym_atom] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(2643), + [sym_keyword] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_EQ_GT] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_EQ_TILDE] = ACTIONS(2643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_PIPE_GT] = ACTIONS(2643), + [anon_sym_LT_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_LT_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_PIPE_GT] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_LT_GT] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_CARET_CARET] = ACTIONS(2643), + [anon_sym_DASH_GT] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_LBRACK2] = ACTIONS(2641), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2641), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2641), + [sym__not_in] = ACTIONS(2641), + [sym__quoted_atom_start] = ACTIONS(2641), + }, + [1014] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2611), + [aux_sym_identifier_token1] = ACTIONS(2611), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2611), + [sym_unused_identifier] = ACTIONS(2611), + [anon_sym___MODULE__] = ACTIONS(2611), + [anon_sym___DIR__] = ACTIONS(2611), + [anon_sym___ENV__] = ACTIONS(2611), + [anon_sym___CALLER__] = ACTIONS(2611), + [anon_sym___STACKTRACE__] = ACTIONS(2611), + [sym_alias] = ACTIONS(2611), + [sym_integer] = ACTIONS(2611), + [sym_float] = ACTIONS(2611), + [sym_char] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2611), + [anon_sym_false] = ACTIONS(2611), + [anon_sym_nil] = ACTIONS(2611), + [sym_atom] = ACTIONS(2611), + [anon_sym_DQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2611), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2611), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_GT] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_SLASH] = ACTIONS(2611), + [anon_sym_TILDE] = ACTIONS(2611), + [anon_sym_COMMA] = ACTIONS(2611), + [sym_keyword] = ACTIONS(2611), + [anon_sym_LT_LT] = ACTIONS(2611), + [anon_sym_GT_GT] = ACTIONS(2611), + [anon_sym_PERCENT] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_CARET] = ACTIONS(2611), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_AT] = ACTIONS(2611), + [anon_sym_LT_DASH] = ACTIONS(2611), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2611), + [anon_sym_when] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_EQ_GT] = ACTIONS(2611), + [anon_sym_EQ] = ACTIONS(2611), + [anon_sym_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2611), + [anon_sym_or] = ACTIONS(2611), + [anon_sym_AMP_AMP] = ACTIONS(2611), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2611), + [anon_sym_and] = ACTIONS(2611), + [anon_sym_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ] = ACTIONS(2611), + [anon_sym_EQ_TILDE] = ACTIONS(2611), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2611), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2611), + [anon_sym_LT_EQ] = ACTIONS(2611), + [anon_sym_GT_EQ] = ACTIONS(2611), + [anon_sym_PIPE_GT] = ACTIONS(2611), + [anon_sym_LT_LT_LT] = ACTIONS(2611), + [anon_sym_GT_GT_GT] = ACTIONS(2611), + [anon_sym_LT_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE] = ACTIONS(2611), + [anon_sym_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_TILDE_GT] = ACTIONS(2611), + [anon_sym_LT_PIPE_GT] = ACTIONS(2611), + [anon_sym_in] = ACTIONS(2611), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2611), + [anon_sym_SLASH_SLASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2611), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2611), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_LT_GT] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_STAR_STAR] = ACTIONS(2611), + [anon_sym_CARET_CARET] = ACTIONS(2611), + [anon_sym_DASH_GT] = ACTIONS(2611), + [anon_sym_DOT] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_fn] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_LBRACK2] = ACTIONS(2609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2609), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2609), + [sym__not_in] = ACTIONS(2609), + [sym__quoted_atom_start] = ACTIONS(2609), + }, + [1015] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2635), + [aux_sym_identifier_token1] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [sym_unused_identifier] = ACTIONS(2635), + [anon_sym___MODULE__] = ACTIONS(2635), + [anon_sym___DIR__] = ACTIONS(2635), + [anon_sym___ENV__] = ACTIONS(2635), + [anon_sym___CALLER__] = ACTIONS(2635), + [anon_sym___STACKTRACE__] = ACTIONS(2635), + [sym_alias] = ACTIONS(2635), + [sym_integer] = ACTIONS(2635), + [sym_float] = ACTIONS(2635), + [sym_char] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2635), + [anon_sym_false] = ACTIONS(2635), + [anon_sym_nil] = ACTIONS(2635), + [sym_atom] = ACTIONS(2635), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE] = ACTIONS(2635), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2635), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [sym_keyword] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_AT] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2635), + [anon_sym_when] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2635), + [anon_sym_and] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_EQ_TILDE] = ACTIONS(2635), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_PIPE_GT] = ACTIONS(2635), + [anon_sym_LT_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_LT_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE] = ACTIONS(2635), + [anon_sym_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_TILDE_GT] = ACTIONS(2635), + [anon_sym_LT_PIPE_GT] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2635), + [anon_sym_SLASH_SLASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2635), + [anon_sym_DOT_DOT] = ACTIONS(2635), + [anon_sym_LT_GT] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_STAR_STAR] = ACTIONS(2635), + [anon_sym_CARET_CARET] = ACTIONS(2635), + [anon_sym_DASH_GT] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2633), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2633), + [sym__not_in] = ACTIONS(2633), + [sym__quoted_atom_start] = ACTIONS(2633), + }, + [1016] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2615), + [aux_sym_identifier_token1] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2615), + [sym_unused_identifier] = ACTIONS(2615), + [anon_sym___MODULE__] = ACTIONS(2615), + [anon_sym___DIR__] = ACTIONS(2615), + [anon_sym___ENV__] = ACTIONS(2615), + [anon_sym___CALLER__] = ACTIONS(2615), + [anon_sym___STACKTRACE__] = ACTIONS(2615), + [sym_alias] = ACTIONS(2615), + [sym_integer] = ACTIONS(2615), + [sym_float] = ACTIONS(2615), + [sym_char] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2615), + [anon_sym_false] = ACTIONS(2615), + [anon_sym_nil] = ACTIONS(2615), + [sym_atom] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2615), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2615), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_SLASH] = ACTIONS(2615), + [anon_sym_TILDE] = ACTIONS(2615), + [anon_sym_COMMA] = ACTIONS(2615), + [sym_keyword] = ACTIONS(2615), + [anon_sym_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT] = ACTIONS(2615), + [anon_sym_PERCENT] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_CARET] = ACTIONS(2615), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_AT] = ACTIONS(2615), + [anon_sym_LT_DASH] = ACTIONS(2615), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2615), + [anon_sym_when] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_EQ_GT] = ACTIONS(2615), + [anon_sym_EQ] = ACTIONS(2615), + [anon_sym_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2615), + [anon_sym_or] = ACTIONS(2615), + [anon_sym_AMP_AMP] = ACTIONS(2615), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2615), + [anon_sym_and] = ACTIONS(2615), + [anon_sym_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ] = ACTIONS(2615), + [anon_sym_EQ_TILDE] = ACTIONS(2615), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2615), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2615), + [anon_sym_LT_EQ] = ACTIONS(2615), + [anon_sym_GT_EQ] = ACTIONS(2615), + [anon_sym_PIPE_GT] = ACTIONS(2615), + [anon_sym_LT_LT_LT] = ACTIONS(2615), + [anon_sym_GT_GT_GT] = ACTIONS(2615), + [anon_sym_LT_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE] = ACTIONS(2615), + [anon_sym_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_TILDE_GT] = ACTIONS(2615), + [anon_sym_LT_PIPE_GT] = ACTIONS(2615), + [anon_sym_in] = ACTIONS(2615), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2615), + [anon_sym_SLASH_SLASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2615), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2615), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_LT_GT] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_STAR_STAR] = ACTIONS(2615), + [anon_sym_CARET_CARET] = ACTIONS(2615), + [anon_sym_DASH_GT] = ACTIONS(2615), + [anon_sym_DOT] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_fn] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_LBRACK2] = ACTIONS(2613), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2613), + [sym__not_in] = ACTIONS(2613), + [sym__quoted_atom_start] = ACTIONS(2613), + }, + [1017] = { + [aux_sym__terminator_repeat1] = STATE(1017), + [aux_sym__terminator_token1] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2656), + [aux_sym_identifier_token1] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [sym_unused_identifier] = ACTIONS(2656), + [anon_sym___MODULE__] = ACTIONS(2656), + [anon_sym___DIR__] = ACTIONS(2656), + [anon_sym___ENV__] = ACTIONS(2656), + [anon_sym___CALLER__] = ACTIONS(2656), + [anon_sym___STACKTRACE__] = ACTIONS(2656), + [sym_alias] = ACTIONS(2656), + [sym_integer] = ACTIONS(2656), + [sym_float] = ACTIONS(2656), + [sym_char] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2656), + [anon_sym_false] = ACTIONS(2656), + [anon_sym_nil] = ACTIONS(2656), + [sym_atom] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2656), + [anon_sym_TILDE] = ACTIONS(2656), + [sym_keyword] = ACTIONS(2656), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2656), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_LT_DASH] = ACTIONS(2656), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2656), + [anon_sym_when] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_or] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2656), + [anon_sym_and] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_EQ_TILDE] = ACTIONS(2656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2656), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_PIPE_GT] = ACTIONS(2656), + [anon_sym_LT_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_LT_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_PIPE_GT] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2656), + [anon_sym_DOT_DOT] = ACTIONS(2656), + [anon_sym_LT_GT] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_STAR_STAR] = ACTIONS(2656), + [anon_sym_CARET_CARET] = ACTIONS(2656), + [anon_sym_DASH_GT] = ACTIONS(2656), + [anon_sym_DOT] = ACTIONS(2656), + [anon_sym_after] = ACTIONS(2656), + [anon_sym_catch] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_end] = ACTIONS(2656), + [anon_sym_fn] = ACTIONS(2656), + [anon_sym_rescue] = ACTIONS(2656), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2658), + [sym__not_in] = ACTIONS(2658), + [sym__quoted_atom_start] = ACTIONS(2658), + }, + [1018] = { + [aux_sym__terminator_repeat1] = STATE(1017), + [aux_sym__terminator_token1] = ACTIONS(2660), + [anon_sym_SEMI] = ACTIONS(2662), + [anon_sym_LPAREN] = ACTIONS(2664), + [aux_sym_identifier_token1] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [sym_unused_identifier] = ACTIONS(2664), + [anon_sym___MODULE__] = ACTIONS(2664), + [anon_sym___DIR__] = ACTIONS(2664), + [anon_sym___ENV__] = ACTIONS(2664), + [anon_sym___CALLER__] = ACTIONS(2664), + [anon_sym___STACKTRACE__] = ACTIONS(2664), + [sym_alias] = ACTIONS(2664), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [sym_char] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_nil] = ACTIONS(2664), + [sym_atom] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [sym_keyword] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_LT_DASH] = ACTIONS(2664), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2664), + [anon_sym_when] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2664), + [anon_sym_and] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_EQ_TILDE] = ACTIONS(2664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_PIPE_GT] = ACTIONS(2664), + [anon_sym_LT_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_PIPE_GT] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_LT_GT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_STAR_STAR] = ACTIONS(2664), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_after] = ACTIONS(2664), + [anon_sym_catch] = ACTIONS(2664), + [anon_sym_else] = ACTIONS(2664), + [anon_sym_end] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [anon_sym_rescue] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2666), + [sym__not_in] = ACTIONS(2666), + [sym__quoted_atom_start] = ACTIONS(2666), + }, + [1019] = { + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym__terminator_token1] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2664), + [aux_sym_identifier_token1] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [sym_unused_identifier] = ACTIONS(2664), + [anon_sym___MODULE__] = ACTIONS(2664), + [anon_sym___DIR__] = ACTIONS(2664), + [anon_sym___ENV__] = ACTIONS(2664), + [anon_sym___CALLER__] = ACTIONS(2664), + [anon_sym___STACKTRACE__] = ACTIONS(2664), + [sym_alias] = ACTIONS(2664), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [sym_char] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_nil] = ACTIONS(2664), + [sym_atom] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_LT_DASH] = ACTIONS(2664), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2664), + [anon_sym_when] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2664), + [anon_sym_and] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_EQ_TILDE] = ACTIONS(2664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_PIPE_GT] = ACTIONS(2664), + [anon_sym_LT_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_PIPE_GT] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_LT_GT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_STAR_STAR] = ACTIONS(2664), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_after] = ACTIONS(2664), + [anon_sym_catch] = ACTIONS(2664), + [anon_sym_else] = ACTIONS(2664), + [anon_sym_end] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [anon_sym_rescue] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2666), + [sym__not_in] = ACTIONS(2666), + [sym__quoted_atom_start] = ACTIONS(2666), + }, + [1020] = { + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym__terminator_token1] = ACTIONS(2668), + [anon_sym_SEMI] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2664), + [aux_sym_identifier_token1] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [sym_unused_identifier] = ACTIONS(2664), + [anon_sym___MODULE__] = ACTIONS(2664), + [anon_sym___DIR__] = ACTIONS(2664), + [anon_sym___ENV__] = ACTIONS(2664), + [anon_sym___CALLER__] = ACTIONS(2664), + [anon_sym___STACKTRACE__] = ACTIONS(2664), + [sym_alias] = ACTIONS(2664), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [sym_char] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_nil] = ACTIONS(2664), + [sym_atom] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_LT_DASH] = ACTIONS(2664), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2664), + [anon_sym_when] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2664), + [anon_sym_and] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_EQ_TILDE] = ACTIONS(2664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_PIPE_GT] = ACTIONS(2664), + [anon_sym_LT_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_PIPE_GT] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_LT_GT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_STAR_STAR] = ACTIONS(2664), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_after] = ACTIONS(2664), + [anon_sym_catch] = ACTIONS(2664), + [anon_sym_else] = ACTIONS(2664), + [anon_sym_end] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [anon_sym_rescue] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2666), + [sym__not_in] = ACTIONS(2666), + [sym__quoted_atom_start] = ACTIONS(2666), + }, + [1021] = { + [aux_sym__terminator_repeat1] = STATE(1021), + [aux_sym__terminator_token1] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2656), + [aux_sym_identifier_token1] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [sym_unused_identifier] = ACTIONS(2656), + [anon_sym___MODULE__] = ACTIONS(2656), + [anon_sym___DIR__] = ACTIONS(2656), + [anon_sym___ENV__] = ACTIONS(2656), + [anon_sym___CALLER__] = ACTIONS(2656), + [anon_sym___STACKTRACE__] = ACTIONS(2656), + [sym_alias] = ACTIONS(2656), + [sym_integer] = ACTIONS(2656), + [sym_float] = ACTIONS(2656), + [sym_char] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2656), + [anon_sym_false] = ACTIONS(2656), + [anon_sym_nil] = ACTIONS(2656), + [sym_atom] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2656), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2656), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_LT_DASH] = ACTIONS(2656), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2656), + [anon_sym_when] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_or] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2656), + [anon_sym_and] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_EQ_TILDE] = ACTIONS(2656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2656), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_PIPE_GT] = ACTIONS(2656), + [anon_sym_LT_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_LT_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_PIPE_GT] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2656), + [anon_sym_DOT_DOT] = ACTIONS(2656), + [anon_sym_LT_GT] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_STAR_STAR] = ACTIONS(2656), + [anon_sym_CARET_CARET] = ACTIONS(2656), + [anon_sym_DASH_GT] = ACTIONS(2656), + [anon_sym_DOT] = ACTIONS(2656), + [anon_sym_after] = ACTIONS(2656), + [anon_sym_catch] = ACTIONS(2656), + [anon_sym_else] = ACTIONS(2656), + [anon_sym_end] = ACTIONS(2656), + [anon_sym_fn] = ACTIONS(2656), + [anon_sym_rescue] = ACTIONS(2656), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2658), + [sym__not_in] = ACTIONS(2658), + [sym__quoted_atom_start] = ACTIONS(2658), + }, + [1022] = { + [aux_sym__terminator_token1] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_after] = ACTIONS(2679), + [anon_sym_catch] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_end] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_rescue] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2677), + [sym__not_in] = ACTIONS(2677), + [sym__quoted_atom_start] = ACTIONS(2677), + }, + [1023] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [sym_keyword] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_after] = ACTIONS(2679), + [anon_sym_catch] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_end] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_rescue] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2677), + [sym__not_in] = ACTIONS(2677), + [sym__quoted_atom_start] = ACTIONS(2677), + }, + [1024] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_after] = ACTIONS(2679), + [anon_sym_catch] = ACTIONS(2679), + [anon_sym_else] = ACTIONS(2679), + [anon_sym_end] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_rescue] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2677), + [sym__not_in] = ACTIONS(2677), + [sym__quoted_atom_start] = ACTIONS(2677), + }, + [1025] = { + [aux_sym__terminator_repeat1] = STATE(1025), + [aux_sym__terminator_token1] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [aux_sym_identifier_token1] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [sym_unused_identifier] = ACTIONS(2656), + [anon_sym___MODULE__] = ACTIONS(2656), + [anon_sym___DIR__] = ACTIONS(2656), + [anon_sym___ENV__] = ACTIONS(2656), + [anon_sym___CALLER__] = ACTIONS(2656), + [anon_sym___STACKTRACE__] = ACTIONS(2656), + [sym_alias] = ACTIONS(2656), + [sym_integer] = ACTIONS(2656), + [sym_float] = ACTIONS(2656), + [sym_char] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2656), + [anon_sym_false] = ACTIONS(2656), + [anon_sym_nil] = ACTIONS(2656), + [sym_atom] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2656), + [anon_sym_TILDE] = ACTIONS(2656), + [sym_keyword] = ACTIONS(2656), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2656), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_LT_DASH] = ACTIONS(2656), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2656), + [anon_sym_when] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_or] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2656), + [anon_sym_and] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_EQ_TILDE] = ACTIONS(2656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2656), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_PIPE_GT] = ACTIONS(2656), + [anon_sym_LT_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_LT_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_PIPE_GT] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2656), + [anon_sym_DOT_DOT] = ACTIONS(2656), + [anon_sym_LT_GT] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_STAR_STAR] = ACTIONS(2656), + [anon_sym_CARET_CARET] = ACTIONS(2656), + [anon_sym_DASH_GT] = ACTIONS(2656), + [anon_sym_DOT] = ACTIONS(2656), + [anon_sym_fn] = ACTIONS(2656), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2658), + [sym__not_in] = ACTIONS(2658), + [sym__quoted_atom_start] = ACTIONS(2658), + }, + [1026] = { + [aux_sym__terminator_repeat1] = STATE(1025), + [aux_sym__terminator_token1] = ACTIONS(2684), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_RPAREN] = ACTIONS(2664), + [aux_sym_identifier_token1] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [sym_unused_identifier] = ACTIONS(2664), + [anon_sym___MODULE__] = ACTIONS(2664), + [anon_sym___DIR__] = ACTIONS(2664), + [anon_sym___ENV__] = ACTIONS(2664), + [anon_sym___CALLER__] = ACTIONS(2664), + [anon_sym___STACKTRACE__] = ACTIONS(2664), + [sym_alias] = ACTIONS(2664), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [sym_char] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_nil] = ACTIONS(2664), + [sym_atom] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [sym_keyword] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_LT_DASH] = ACTIONS(2664), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2664), + [anon_sym_when] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2664), + [anon_sym_and] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_EQ_TILDE] = ACTIONS(2664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_PIPE_GT] = ACTIONS(2664), + [anon_sym_LT_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_PIPE_GT] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_LT_GT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_STAR_STAR] = ACTIONS(2664), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2666), + [sym__not_in] = ACTIONS(2666), + [sym__quoted_atom_start] = ACTIONS(2666), + }, + [1027] = { + [aux_sym__terminator_repeat1] = STATE(1027), + [aux_sym__terminator_token1] = ACTIONS(2688), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2656), + [aux_sym_identifier_token1] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [sym_unused_identifier] = ACTIONS(2656), + [anon_sym___MODULE__] = ACTIONS(2656), + [anon_sym___DIR__] = ACTIONS(2656), + [anon_sym___ENV__] = ACTIONS(2656), + [anon_sym___CALLER__] = ACTIONS(2656), + [anon_sym___STACKTRACE__] = ACTIONS(2656), + [sym_alias] = ACTIONS(2656), + [sym_integer] = ACTIONS(2656), + [sym_float] = ACTIONS(2656), + [sym_char] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2656), + [anon_sym_false] = ACTIONS(2656), + [anon_sym_nil] = ACTIONS(2656), + [sym_atom] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2656), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2656), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_LT_DASH] = ACTIONS(2656), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2656), + [anon_sym_when] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_or] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2656), + [anon_sym_and] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_EQ_TILDE] = ACTIONS(2656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2656), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_PIPE_GT] = ACTIONS(2656), + [anon_sym_LT_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_LT_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_PIPE_GT] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2656), + [anon_sym_DOT_DOT] = ACTIONS(2656), + [anon_sym_LT_GT] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_STAR_STAR] = ACTIONS(2656), + [anon_sym_CARET_CARET] = ACTIONS(2656), + [anon_sym_DASH_GT] = ACTIONS(2656), + [anon_sym_DOT] = ACTIONS(2656), + [anon_sym_end] = ACTIONS(2656), + [anon_sym_fn] = ACTIONS(2656), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2658), + [sym__not_in] = ACTIONS(2658), + [sym__quoted_atom_start] = ACTIONS(2658), + }, + [1028] = { + [aux_sym__terminator_repeat1] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2666), + [aux_sym__terminator_token1] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2664), + [aux_sym_identifier_token1] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [sym_unused_identifier] = ACTIONS(2664), + [anon_sym___MODULE__] = ACTIONS(2664), + [anon_sym___DIR__] = ACTIONS(2664), + [anon_sym___ENV__] = ACTIONS(2664), + [anon_sym___CALLER__] = ACTIONS(2664), + [anon_sym___STACKTRACE__] = ACTIONS(2664), + [sym_alias] = ACTIONS(2664), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [sym_char] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_nil] = ACTIONS(2664), + [sym_atom] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_LT_DASH] = ACTIONS(2664), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2664), + [anon_sym_when] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2664), + [anon_sym_and] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_EQ_TILDE] = ACTIONS(2664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_PIPE_GT] = ACTIONS(2664), + [anon_sym_LT_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_PIPE_GT] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_LT_GT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_STAR_STAR] = ACTIONS(2664), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2666), + [sym__not_in] = ACTIONS(2666), + [sym__quoted_atom_start] = ACTIONS(2666), + }, + [1029] = { + [aux_sym__terminator_repeat1] = STATE(1032), + [aux_sym__terminator_token1] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_RPAREN] = ACTIONS(2664), + [aux_sym_identifier_token1] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [sym_unused_identifier] = ACTIONS(2664), + [anon_sym___MODULE__] = ACTIONS(2664), + [anon_sym___DIR__] = ACTIONS(2664), + [anon_sym___ENV__] = ACTIONS(2664), + [anon_sym___CALLER__] = ACTIONS(2664), + [anon_sym___STACKTRACE__] = ACTIONS(2664), + [sym_alias] = ACTIONS(2664), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [sym_char] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_nil] = ACTIONS(2664), + [sym_atom] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_LT_DASH] = ACTIONS(2664), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2664), + [anon_sym_when] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2664), + [anon_sym_and] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_EQ_TILDE] = ACTIONS(2664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_PIPE_GT] = ACTIONS(2664), + [anon_sym_LT_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_PIPE_GT] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_LT_GT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_STAR_STAR] = ACTIONS(2664), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2666), + [sym__not_in] = ACTIONS(2666), + [sym__quoted_atom_start] = ACTIONS(2666), + }, + [1030] = { + [aux_sym__terminator_repeat1] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2658), + [aux_sym__terminator_token1] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2656), + [aux_sym_identifier_token1] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [sym_unused_identifier] = ACTIONS(2656), + [anon_sym___MODULE__] = ACTIONS(2656), + [anon_sym___DIR__] = ACTIONS(2656), + [anon_sym___ENV__] = ACTIONS(2656), + [anon_sym___CALLER__] = ACTIONS(2656), + [anon_sym___STACKTRACE__] = ACTIONS(2656), + [sym_alias] = ACTIONS(2656), + [sym_integer] = ACTIONS(2656), + [sym_float] = ACTIONS(2656), + [sym_char] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2656), + [anon_sym_false] = ACTIONS(2656), + [anon_sym_nil] = ACTIONS(2656), + [sym_atom] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2656), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2656), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_LT_DASH] = ACTIONS(2656), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2656), + [anon_sym_when] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_or] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2656), + [anon_sym_and] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_EQ_TILDE] = ACTIONS(2656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2656), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_PIPE_GT] = ACTIONS(2656), + [anon_sym_LT_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_LT_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_PIPE_GT] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2656), + [anon_sym_DOT_DOT] = ACTIONS(2656), + [anon_sym_LT_GT] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_STAR_STAR] = ACTIONS(2656), + [anon_sym_CARET_CARET] = ACTIONS(2656), + [anon_sym_DASH_GT] = ACTIONS(2656), + [anon_sym_DOT] = ACTIONS(2656), + [anon_sym_fn] = ACTIONS(2656), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2658), + [sym__not_in] = ACTIONS(2658), + [sym__quoted_atom_start] = ACTIONS(2658), + }, + [1031] = { + [aux_sym__terminator_repeat1] = STATE(1027), + [aux_sym__terminator_token1] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2664), + [aux_sym_identifier_token1] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [sym_unused_identifier] = ACTIONS(2664), + [anon_sym___MODULE__] = ACTIONS(2664), + [anon_sym___DIR__] = ACTIONS(2664), + [anon_sym___ENV__] = ACTIONS(2664), + [anon_sym___CALLER__] = ACTIONS(2664), + [anon_sym___STACKTRACE__] = ACTIONS(2664), + [sym_alias] = ACTIONS(2664), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [sym_char] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_nil] = ACTIONS(2664), + [sym_atom] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_LT_DASH] = ACTIONS(2664), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2664), + [anon_sym_when] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2664), + [anon_sym_and] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_EQ_TILDE] = ACTIONS(2664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_PIPE_GT] = ACTIONS(2664), + [anon_sym_LT_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_PIPE_GT] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_LT_GT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_STAR_STAR] = ACTIONS(2664), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_end] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2666), + [sym__not_in] = ACTIONS(2666), + [sym__quoted_atom_start] = ACTIONS(2666), + }, + [1032] = { + [aux_sym__terminator_repeat1] = STATE(1032), + [aux_sym__terminator_token1] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_RPAREN] = ACTIONS(2656), + [aux_sym_identifier_token1] = ACTIONS(2656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2656), + [sym_unused_identifier] = ACTIONS(2656), + [anon_sym___MODULE__] = ACTIONS(2656), + [anon_sym___DIR__] = ACTIONS(2656), + [anon_sym___ENV__] = ACTIONS(2656), + [anon_sym___CALLER__] = ACTIONS(2656), + [anon_sym___STACKTRACE__] = ACTIONS(2656), + [sym_alias] = ACTIONS(2656), + [sym_integer] = ACTIONS(2656), + [sym_float] = ACTIONS(2656), + [sym_char] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2656), + [anon_sym_false] = ACTIONS(2656), + [anon_sym_nil] = ACTIONS(2656), + [sym_atom] = ACTIONS(2656), + [anon_sym_DQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2656), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2656), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_GT] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_SLASH] = ACTIONS(2656), + [anon_sym_TILDE] = ACTIONS(2656), + [anon_sym_LT_LT] = ACTIONS(2656), + [anon_sym_PERCENT] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(2656), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_CARET] = ACTIONS(2656), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2656), + [anon_sym_not] = ACTIONS(2656), + [anon_sym_AT] = ACTIONS(2656), + [anon_sym_LT_DASH] = ACTIONS(2656), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2656), + [anon_sym_when] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_EQ] = ACTIONS(2656), + [anon_sym_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2656), + [anon_sym_or] = ACTIONS(2656), + [anon_sym_AMP_AMP] = ACTIONS(2656), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2656), + [anon_sym_and] = ACTIONS(2656), + [anon_sym_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ] = ACTIONS(2656), + [anon_sym_EQ_TILDE] = ACTIONS(2656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2656), + [anon_sym_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_EQ] = ACTIONS(2656), + [anon_sym_PIPE_GT] = ACTIONS(2656), + [anon_sym_LT_LT_LT] = ACTIONS(2656), + [anon_sym_GT_GT_GT] = ACTIONS(2656), + [anon_sym_LT_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE] = ACTIONS(2656), + [anon_sym_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_TILDE_GT] = ACTIONS(2656), + [anon_sym_LT_PIPE_GT] = ACTIONS(2656), + [anon_sym_in] = ACTIONS(2656), + [anon_sym_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH] = ACTIONS(2656), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2656), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2656), + [anon_sym_DOT_DOT] = ACTIONS(2656), + [anon_sym_LT_GT] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_STAR_STAR] = ACTIONS(2656), + [anon_sym_CARET_CARET] = ACTIONS(2656), + [anon_sym_DASH_GT] = ACTIONS(2656), + [anon_sym_DOT] = ACTIONS(2656), + [anon_sym_fn] = ACTIONS(2656), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2658), + [sym__not_in] = ACTIONS(2658), + [sym__quoted_atom_start] = ACTIONS(2658), + }, + [1033] = { + [aux_sym__terminator_repeat1] = STATE(1032), + [aux_sym__terminator_token1] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_RPAREN] = ACTIONS(2664), + [aux_sym_identifier_token1] = ACTIONS(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2664), + [sym_unused_identifier] = ACTIONS(2664), + [anon_sym___MODULE__] = ACTIONS(2664), + [anon_sym___DIR__] = ACTIONS(2664), + [anon_sym___ENV__] = ACTIONS(2664), + [anon_sym___CALLER__] = ACTIONS(2664), + [anon_sym___STACKTRACE__] = ACTIONS(2664), + [sym_alias] = ACTIONS(2664), + [sym_integer] = ACTIONS(2664), + [sym_float] = ACTIONS(2664), + [sym_char] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2664), + [anon_sym_false] = ACTIONS(2664), + [anon_sym_nil] = ACTIONS(2664), + [sym_atom] = ACTIONS(2664), + [anon_sym_DQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2664), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2664), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_GT] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_SLASH] = ACTIONS(2664), + [anon_sym_TILDE] = ACTIONS(2664), + [anon_sym_LT_LT] = ACTIONS(2664), + [anon_sym_PERCENT] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PLUS] = ACTIONS(2664), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2664), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2664), + [anon_sym_not] = ACTIONS(2664), + [anon_sym_AT] = ACTIONS(2664), + [anon_sym_LT_DASH] = ACTIONS(2664), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2664), + [anon_sym_when] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_EQ] = ACTIONS(2664), + [anon_sym_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2664), + [anon_sym_or] = ACTIONS(2664), + [anon_sym_AMP_AMP] = ACTIONS(2664), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2664), + [anon_sym_and] = ACTIONS(2664), + [anon_sym_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ] = ACTIONS(2664), + [anon_sym_EQ_TILDE] = ACTIONS(2664), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2664), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2664), + [anon_sym_LT_EQ] = ACTIONS(2664), + [anon_sym_GT_EQ] = ACTIONS(2664), + [anon_sym_PIPE_GT] = ACTIONS(2664), + [anon_sym_LT_LT_LT] = ACTIONS(2664), + [anon_sym_GT_GT_GT] = ACTIONS(2664), + [anon_sym_LT_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE] = ACTIONS(2664), + [anon_sym_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_TILDE_GT] = ACTIONS(2664), + [anon_sym_LT_PIPE_GT] = ACTIONS(2664), + [anon_sym_in] = ACTIONS(2664), + [anon_sym_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH] = ACTIONS(2664), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2664), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_LT_GT] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_STAR_STAR] = ACTIONS(2664), + [anon_sym_CARET_CARET] = ACTIONS(2664), + [anon_sym_DASH_GT] = ACTIONS(2664), + [anon_sym_DOT] = ACTIONS(2664), + [anon_sym_fn] = ACTIONS(2664), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2666), + [sym__not_in] = ACTIONS(2666), + [sym__quoted_atom_start] = ACTIONS(2666), + }, + [1034] = { + [aux_sym__terminator_token1] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2677), + [sym__not_in] = ACTIONS(2677), + [sym__quoted_atom_start] = ACTIONS(2677), + }, + [1035] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [sym_keyword] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2677), + [sym__not_in] = ACTIONS(2677), + [sym__quoted_atom_start] = ACTIONS(2677), + }, + [1036] = { + [aux_sym__terminator_token1] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_end] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2677), + [sym__not_in] = ACTIONS(2677), + [sym__quoted_atom_start] = ACTIONS(2677), + }, + [1037] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2677), + [sym__not_in] = ACTIONS(2677), + [sym__quoted_atom_start] = ACTIONS(2677), + }, + [1038] = { + [sym__identifier] = STATE(912), + [sym_identifier] = STATE(912), + [sym_special_identifier] = STATE(912), + [sym__quoted_i_double] = STATE(911), + [sym__quoted_i_single] = STATE(922), + [sym_tuple] = STATE(1128), + [sym_operator_identifier] = STATE(912), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(2713), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2715), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [anon_sym_nil] = ACTIONS(2717), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2727), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2731), + [anon_sym_LT_DASH] = ACTIONS(2723), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2723), + [anon_sym_when] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_or] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2723), + [anon_sym_and] = ACTIONS(2733), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_EQ_TILDE] = ACTIONS(2723), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_PIPE_GT] = ACTIONS(2723), + [anon_sym_LT_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_LT_LT_TILDE] = ACTIONS(2723), + [anon_sym_TILDE_GT_GT] = ACTIONS(2723), + [anon_sym_LT_TILDE] = ACTIONS(2723), + [anon_sym_TILDE_GT] = ACTIONS(2723), + [anon_sym_LT_TILDE_GT] = ACTIONS(2723), + [anon_sym_LT_PIPE_GT] = ACTIONS(2723), + [anon_sym_in] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2723), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_LT_GT] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_STAR_STAR] = ACTIONS(2723), + [anon_sym_CARET_CARET] = ACTIONS(2723), + [anon_sym_DASH_GT] = ACTIONS(2723), + [anon_sym_DOT] = ACTIONS(2723), + [anon_sym_after] = ACTIONS(2717), + [anon_sym_catch] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_end] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2717), + [anon_sym_rescue] = ACTIONS(2717), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2735), + }, + [1039] = { + [ts_builtin_sym_end] = ACTIONS(2677), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2679), + [aux_sym_identifier_token1] = ACTIONS(2679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [sym_unused_identifier] = ACTIONS(2679), + [anon_sym___MODULE__] = ACTIONS(2679), + [anon_sym___DIR__] = ACTIONS(2679), + [anon_sym___ENV__] = ACTIONS(2679), + [anon_sym___CALLER__] = ACTIONS(2679), + [anon_sym___STACKTRACE__] = ACTIONS(2679), + [sym_alias] = ACTIONS(2679), + [sym_integer] = ACTIONS(2679), + [sym_float] = ACTIONS(2679), + [sym_char] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_nil] = ACTIONS(2679), + [sym_atom] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2679), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PLUS] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2679), + [anon_sym_not] = ACTIONS(2679), + [anon_sym_AT] = ACTIONS(2679), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_or] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_EQ_TILDE] = ACTIONS(2679), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2679), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_PIPE_GT] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_LT_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE] = ACTIONS(2679), + [anon_sym_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_TILDE_GT] = ACTIONS(2679), + [anon_sym_LT_PIPE_GT] = ACTIONS(2679), + [anon_sym_in] = ACTIONS(2679), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_LT_GT] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_STAR_STAR] = ACTIONS(2679), + [anon_sym_CARET_CARET] = ACTIONS(2679), + [anon_sym_DASH_GT] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2677), + [sym__not_in] = ACTIONS(2677), + [sym__quoted_atom_start] = ACTIONS(2677), + }, + [1040] = { + [sym__identifier] = STATE(937), + [sym_identifier] = STATE(937), + [sym_special_identifier] = STATE(937), + [sym__quoted_i_double] = STATE(934), + [sym__quoted_i_single] = STATE(933), + [sym_tuple] = STATE(1844), + [sym_operator_identifier] = STATE(937), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(2737), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2739), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [anon_sym_nil] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(2747), + [anon_sym_GT] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_CARET] = ACTIONS(2751), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2747), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2747), + [anon_sym_when] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_EQ] = ACTIONS(2747), + [anon_sym_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_or] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2747), + [anon_sym_and] = ACTIONS(2757), + [anon_sym_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_EQ_TILDE] = ACTIONS(2747), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2747), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_PIPE_GT] = ACTIONS(2747), + [anon_sym_LT_LT_LT] = ACTIONS(2747), + [anon_sym_GT_GT_GT] = ACTIONS(2747), + [anon_sym_LT_LT_TILDE] = ACTIONS(2747), + [anon_sym_TILDE_GT_GT] = ACTIONS(2747), + [anon_sym_LT_TILDE] = ACTIONS(2747), + [anon_sym_TILDE_GT] = ACTIONS(2747), + [anon_sym_LT_TILDE_GT] = ACTIONS(2747), + [anon_sym_LT_PIPE_GT] = ACTIONS(2747), + [anon_sym_in] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2747), + [anon_sym_DOT_DOT] = ACTIONS(2747), + [anon_sym_LT_GT] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_STAR_STAR] = ACTIONS(2747), + [anon_sym_CARET_CARET] = ACTIONS(2747), + [anon_sym_DASH_GT] = ACTIONS(2747), + [anon_sym_DOT] = ACTIONS(2747), + [anon_sym_after] = ACTIONS(2741), + [anon_sym_catch] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2741), + [anon_sym_end] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_rescue] = ACTIONS(2741), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2759), + }, + [1041] = { + [sym__identifier] = STATE(1005), + [sym_identifier] = STATE(1005), + [sym_special_identifier] = STATE(1005), + [sym__quoted_i_double] = STATE(1003), + [sym__quoted_i_single] = STATE(1002), + [sym_tuple] = STATE(3268), + [sym_operator_identifier] = STATE(1005), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(2761), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2763), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [anon_sym_nil] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2771), + [anon_sym_when] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_EQ] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2771), + [anon_sym_and] = ACTIONS(2781), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_EQ_TILDE] = ACTIONS(2771), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_PIPE_GT] = ACTIONS(2771), + [anon_sym_LT_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_LT_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_PIPE_GT] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2771), + [anon_sym_DOT_DOT] = ACTIONS(2771), + [anon_sym_LT_GT] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_STAR_STAR] = ACTIONS(2771), + [anon_sym_CARET_CARET] = ACTIONS(2771), + [anon_sym_DASH_GT] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_after] = ACTIONS(2765), + [anon_sym_catch] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_end] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_rescue] = ACTIONS(2765), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2783), + }, + [1042] = { + [sym__identifier] = STATE(981), + [sym_identifier] = STATE(981), + [sym_special_identifier] = STATE(981), + [sym__quoted_i_double] = STATE(980), + [sym__quoted_i_single] = STATE(979), + [sym_tuple] = STATE(1361), + [sym_operator_identifier] = STATE(981), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(2785), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2789), + [anon_sym_false] = ACTIONS(2789), + [anon_sym_nil] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SLASH] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_CARET] = ACTIONS(2799), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_AT] = ACTIONS(2803), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2795), + [anon_sym_when] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_or] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2795), + [anon_sym_and] = ACTIONS(2805), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2795), + [anon_sym_EQ_TILDE] = ACTIONS(2795), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2795), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_PIPE_GT] = ACTIONS(2795), + [anon_sym_LT_LT_LT] = ACTIONS(2795), + [anon_sym_GT_GT_GT] = ACTIONS(2795), + [anon_sym_LT_LT_TILDE] = ACTIONS(2795), + [anon_sym_TILDE_GT_GT] = ACTIONS(2795), + [anon_sym_LT_TILDE] = ACTIONS(2795), + [anon_sym_TILDE_GT] = ACTIONS(2795), + [anon_sym_LT_TILDE_GT] = ACTIONS(2795), + [anon_sym_LT_PIPE_GT] = ACTIONS(2795), + [anon_sym_in] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2795), + [anon_sym_DOT_DOT] = ACTIONS(2795), + [anon_sym_LT_GT] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_STAR_STAR] = ACTIONS(2795), + [anon_sym_CARET_CARET] = ACTIONS(2795), + [anon_sym_DASH_GT] = ACTIONS(2795), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_after] = ACTIONS(2789), + [anon_sym_catch] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_end] = ACTIONS(2789), + [anon_sym_fn] = ACTIONS(2789), + [anon_sym_rescue] = ACTIONS(2789), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2807), + }, + [1043] = { + [sym__identifier] = STATE(937), + [sym_identifier] = STATE(937), + [sym_special_identifier] = STATE(937), + [sym__quoted_i_double] = STATE(934), + [sym__quoted_i_single] = STATE(933), + [sym_tuple] = STATE(2279), + [sym_operator_identifier] = STATE(937), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(2737), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2809), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [anon_sym_nil] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(1087), + [anon_sym_LT] = ACTIONS(2747), + [anon_sym_GT] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_CARET] = ACTIONS(2751), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2747), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2747), + [anon_sym_when] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_EQ] = ACTIONS(2747), + [anon_sym_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_or] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2747), + [anon_sym_and] = ACTIONS(2757), + [anon_sym_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_EQ_TILDE] = ACTIONS(2747), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2747), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_PIPE_GT] = ACTIONS(2747), + [anon_sym_LT_LT_LT] = ACTIONS(2747), + [anon_sym_GT_GT_GT] = ACTIONS(2747), + [anon_sym_LT_LT_TILDE] = ACTIONS(2747), + [anon_sym_TILDE_GT_GT] = ACTIONS(2747), + [anon_sym_LT_TILDE] = ACTIONS(2747), + [anon_sym_TILDE_GT] = ACTIONS(2747), + [anon_sym_LT_TILDE_GT] = ACTIONS(2747), + [anon_sym_LT_PIPE_GT] = ACTIONS(2747), + [anon_sym_in] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2747), + [anon_sym_DOT_DOT] = ACTIONS(2747), + [anon_sym_LT_GT] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_STAR_STAR] = ACTIONS(2747), + [anon_sym_CARET_CARET] = ACTIONS(2747), + [anon_sym_DASH_GT] = ACTIONS(2747), + [anon_sym_DOT] = ACTIONS(2747), + [anon_sym_after] = ACTIONS(2741), + [anon_sym_catch] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2741), + [anon_sym_end] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_rescue] = ACTIONS(2741), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2759), + }, + [1044] = { + [sym__identifier] = STATE(974), + [sym_identifier] = STATE(974), + [sym_special_identifier] = STATE(974), + [sym__quoted_i_double] = STATE(950), + [sym__quoted_i_single] = STATE(949), + [sym_tuple] = STATE(3181), + [sym_operator_identifier] = STATE(974), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(2811), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(2813), + [anon_sym_true] = ACTIONS(2815), + [anon_sym_false] = ACTIONS(2815), + [anon_sym_nil] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_CARET] = ACTIONS(2825), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2827), + [anon_sym_AT] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2821), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2821), + [anon_sym_when] = ACTIONS(2831), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_or] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2821), + [anon_sym_and] = ACTIONS(2831), + [anon_sym_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ] = ACTIONS(2821), + [anon_sym_EQ_TILDE] = ACTIONS(2821), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2821), + [anon_sym_PIPE_GT] = ACTIONS(2821), + [anon_sym_LT_LT_LT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2821), + [anon_sym_LT_LT_TILDE] = ACTIONS(2821), + [anon_sym_TILDE_GT_GT] = ACTIONS(2821), + [anon_sym_LT_TILDE] = ACTIONS(2821), + [anon_sym_TILDE_GT] = ACTIONS(2821), + [anon_sym_LT_TILDE_GT] = ACTIONS(2821), + [anon_sym_LT_PIPE_GT] = ACTIONS(2821), + [anon_sym_in] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2821), + [anon_sym_DOT_DOT] = ACTIONS(2821), + [anon_sym_LT_GT] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_STAR_STAR] = ACTIONS(2821), + [anon_sym_CARET_CARET] = ACTIONS(2821), + [anon_sym_DASH_GT] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_after] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_end] = ACTIONS(2815), + [anon_sym_fn] = ACTIONS(2815), + [anon_sym_rescue] = ACTIONS(2815), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2833), + }, + [1045] = { + [sym__identifier] = STATE(981), + [sym_identifier] = STATE(981), + [sym_special_identifier] = STATE(981), + [sym__quoted_i_double] = STATE(980), + [sym__quoted_i_single] = STATE(979), + [sym_tuple] = STATE(1128), + [sym_operator_identifier] = STATE(981), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(2785), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2715), + [anon_sym_true] = ACTIONS(2789), + [anon_sym_false] = ACTIONS(2789), + [anon_sym_nil] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SLASH] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_CARET] = ACTIONS(2799), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_AT] = ACTIONS(2803), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2795), + [anon_sym_when] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_or] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2795), + [anon_sym_and] = ACTIONS(2805), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2795), + [anon_sym_EQ_TILDE] = ACTIONS(2795), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2795), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_PIPE_GT] = ACTIONS(2795), + [anon_sym_LT_LT_LT] = ACTIONS(2795), + [anon_sym_GT_GT_GT] = ACTIONS(2795), + [anon_sym_LT_LT_TILDE] = ACTIONS(2795), + [anon_sym_TILDE_GT_GT] = ACTIONS(2795), + [anon_sym_LT_TILDE] = ACTIONS(2795), + [anon_sym_TILDE_GT] = ACTIONS(2795), + [anon_sym_LT_TILDE_GT] = ACTIONS(2795), + [anon_sym_LT_PIPE_GT] = ACTIONS(2795), + [anon_sym_in] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2795), + [anon_sym_DOT_DOT] = ACTIONS(2795), + [anon_sym_LT_GT] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_STAR_STAR] = ACTIONS(2795), + [anon_sym_CARET_CARET] = ACTIONS(2795), + [anon_sym_DASH_GT] = ACTIONS(2795), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_after] = ACTIONS(2789), + [anon_sym_catch] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_end] = ACTIONS(2789), + [anon_sym_fn] = ACTIONS(2789), + [anon_sym_rescue] = ACTIONS(2789), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2807), + }, + [1046] = { + [sym__identifier] = STATE(969), + [sym_identifier] = STATE(969), + [sym_special_identifier] = STATE(969), + [sym__quoted_i_double] = STATE(971), + [sym__quoted_i_single] = STATE(972), + [sym_tuple] = STATE(1642), + [sym_operator_identifier] = STATE(969), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(2835), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2837), + [anon_sym_true] = ACTIONS(2839), + [anon_sym_false] = ACTIONS(2839), + [anon_sym_nil] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(2845), + [anon_sym_GT] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2849), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2849), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_AT] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2845), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2845), + [anon_sym_when] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2845), + [anon_sym_EQ] = ACTIONS(2845), + [anon_sym_PIPE_PIPE] = ACTIONS(2845), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2845), + [anon_sym_or] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2845), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2845), + [anon_sym_and] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2845), + [anon_sym_BANG_EQ] = ACTIONS(2845), + [anon_sym_EQ_TILDE] = ACTIONS(2845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2845), + [anon_sym_LT_EQ] = ACTIONS(2845), + [anon_sym_GT_EQ] = ACTIONS(2845), + [anon_sym_PIPE_GT] = ACTIONS(2845), + [anon_sym_LT_LT_LT] = ACTIONS(2845), + [anon_sym_GT_GT_GT] = ACTIONS(2845), + [anon_sym_LT_LT_TILDE] = ACTIONS(2845), + [anon_sym_TILDE_GT_GT] = ACTIONS(2845), + [anon_sym_LT_TILDE] = ACTIONS(2845), + [anon_sym_TILDE_GT] = ACTIONS(2845), + [anon_sym_LT_TILDE_GT] = ACTIONS(2845), + [anon_sym_LT_PIPE_GT] = ACTIONS(2845), + [anon_sym_in] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2845), + [anon_sym_DOT_DOT] = ACTIONS(2845), + [anon_sym_LT_GT] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_STAR_STAR] = ACTIONS(2845), + [anon_sym_CARET_CARET] = ACTIONS(2845), + [anon_sym_DASH_GT] = ACTIONS(2845), + [anon_sym_DOT] = ACTIONS(2845), + [anon_sym_after] = ACTIONS(2839), + [anon_sym_catch] = ACTIONS(2839), + [anon_sym_do] = ACTIONS(2839), + [anon_sym_else] = ACTIONS(2839), + [anon_sym_end] = ACTIONS(2839), + [anon_sym_fn] = ACTIONS(2839), + [anon_sym_rescue] = ACTIONS(2839), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2857), + }, + [1047] = { + [sym__identifier] = STATE(981), + [sym_identifier] = STATE(981), + [sym_special_identifier] = STATE(981), + [sym__quoted_i_double] = STATE(980), + [sym__quoted_i_single] = STATE(979), + [sym_tuple] = STATE(1514), + [sym_operator_identifier] = STATE(981), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(2785), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2859), + [anon_sym_true] = ACTIONS(2789), + [anon_sym_false] = ACTIONS(2789), + [anon_sym_nil] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SLASH] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_CARET] = ACTIONS(2799), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_AT] = ACTIONS(2803), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2795), + [anon_sym_when] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_or] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2795), + [anon_sym_and] = ACTIONS(2805), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2795), + [anon_sym_EQ_TILDE] = ACTIONS(2795), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2795), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_PIPE_GT] = ACTIONS(2795), + [anon_sym_LT_LT_LT] = ACTIONS(2795), + [anon_sym_GT_GT_GT] = ACTIONS(2795), + [anon_sym_LT_LT_TILDE] = ACTIONS(2795), + [anon_sym_TILDE_GT_GT] = ACTIONS(2795), + [anon_sym_LT_TILDE] = ACTIONS(2795), + [anon_sym_TILDE_GT] = ACTIONS(2795), + [anon_sym_LT_TILDE_GT] = ACTIONS(2795), + [anon_sym_LT_PIPE_GT] = ACTIONS(2795), + [anon_sym_in] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2795), + [anon_sym_DOT_DOT] = ACTIONS(2795), + [anon_sym_LT_GT] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_STAR_STAR] = ACTIONS(2795), + [anon_sym_CARET_CARET] = ACTIONS(2795), + [anon_sym_DASH_GT] = ACTIONS(2795), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_after] = ACTIONS(2789), + [anon_sym_catch] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_end] = ACTIONS(2789), + [anon_sym_fn] = ACTIONS(2789), + [anon_sym_rescue] = ACTIONS(2789), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2807), + }, + [1048] = { + [sym__identifier] = STATE(974), + [sym_identifier] = STATE(974), + [sym_special_identifier] = STATE(974), + [sym__quoted_i_double] = STATE(950), + [sym__quoted_i_single] = STATE(949), + [sym_tuple] = STATE(2272), + [sym_operator_identifier] = STATE(974), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(503), + [sym_unused_identifier] = ACTIONS(2811), + [anon_sym___MODULE__] = ACTIONS(507), + [anon_sym___DIR__] = ACTIONS(507), + [anon_sym___ENV__] = ACTIONS(507), + [anon_sym___CALLER__] = ACTIONS(507), + [anon_sym___STACKTRACE__] = ACTIONS(507), + [sym_alias] = ACTIONS(2861), + [anon_sym_true] = ACTIONS(2815), + [anon_sym_false] = ACTIONS(2815), + [anon_sym_nil] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_LBRACE] = ACTIONS(523), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_CARET] = ACTIONS(2825), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2827), + [anon_sym_AT] = ACTIONS(2829), + [anon_sym_LT_DASH] = ACTIONS(2821), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2821), + [anon_sym_when] = ACTIONS(2831), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2821), + [anon_sym_or] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2821), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2821), + [anon_sym_and] = ACTIONS(2831), + [anon_sym_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ] = ACTIONS(2821), + [anon_sym_EQ_TILDE] = ACTIONS(2821), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2821), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2821), + [anon_sym_PIPE_GT] = ACTIONS(2821), + [anon_sym_LT_LT_LT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2821), + [anon_sym_LT_LT_TILDE] = ACTIONS(2821), + [anon_sym_TILDE_GT_GT] = ACTIONS(2821), + [anon_sym_LT_TILDE] = ACTIONS(2821), + [anon_sym_TILDE_GT] = ACTIONS(2821), + [anon_sym_LT_TILDE_GT] = ACTIONS(2821), + [anon_sym_LT_PIPE_GT] = ACTIONS(2821), + [anon_sym_in] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2821), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2821), + [anon_sym_DOT_DOT] = ACTIONS(2821), + [anon_sym_LT_GT] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_STAR_STAR] = ACTIONS(2821), + [anon_sym_CARET_CARET] = ACTIONS(2821), + [anon_sym_DASH_GT] = ACTIONS(2821), + [anon_sym_DOT] = ACTIONS(2821), + [anon_sym_after] = ACTIONS(2815), + [anon_sym_catch] = ACTIONS(2815), + [anon_sym_do] = ACTIONS(2815), + [anon_sym_else] = ACTIONS(2815), + [anon_sym_end] = ACTIONS(2815), + [anon_sym_fn] = ACTIONS(2815), + [anon_sym_rescue] = ACTIONS(2815), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2833), + }, + [1049] = { + [sym__identifier] = STATE(937), + [sym_identifier] = STATE(937), + [sym_special_identifier] = STATE(937), + [sym__quoted_i_double] = STATE(934), + [sym__quoted_i_single] = STATE(933), + [sym_tuple] = STATE(3187), + [sym_operator_identifier] = STATE(937), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(2737), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2863), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [anon_sym_nil] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_LT] = ACTIONS(2747), + [anon_sym_GT] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_CARET] = ACTIONS(2751), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2747), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2747), + [anon_sym_when] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_EQ] = ACTIONS(2747), + [anon_sym_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_or] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2747), + [anon_sym_and] = ACTIONS(2757), + [anon_sym_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_EQ_TILDE] = ACTIONS(2747), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2747), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_PIPE_GT] = ACTIONS(2747), + [anon_sym_LT_LT_LT] = ACTIONS(2747), + [anon_sym_GT_GT_GT] = ACTIONS(2747), + [anon_sym_LT_LT_TILDE] = ACTIONS(2747), + [anon_sym_TILDE_GT_GT] = ACTIONS(2747), + [anon_sym_LT_TILDE] = ACTIONS(2747), + [anon_sym_TILDE_GT] = ACTIONS(2747), + [anon_sym_LT_TILDE_GT] = ACTIONS(2747), + [anon_sym_LT_PIPE_GT] = ACTIONS(2747), + [anon_sym_in] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2747), + [anon_sym_DOT_DOT] = ACTIONS(2747), + [anon_sym_LT_GT] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_STAR_STAR] = ACTIONS(2747), + [anon_sym_CARET_CARET] = ACTIONS(2747), + [anon_sym_DASH_GT] = ACTIONS(2747), + [anon_sym_DOT] = ACTIONS(2747), + [anon_sym_after] = ACTIONS(2741), + [anon_sym_catch] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2741), + [anon_sym_end] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_rescue] = ACTIONS(2741), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2759), + }, + [1050] = { + [sym__identifier] = STATE(969), + [sym_identifier] = STATE(969), + [sym_special_identifier] = STATE(969), + [sym__quoted_i_double] = STATE(971), + [sym__quoted_i_single] = STATE(972), + [sym_tuple] = STATE(1361), + [sym_operator_identifier] = STATE(969), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(436), + [sym_unused_identifier] = ACTIONS(2835), + [anon_sym___MODULE__] = ACTIONS(440), + [anon_sym___DIR__] = ACTIONS(440), + [anon_sym___ENV__] = ACTIONS(440), + [anon_sym___CALLER__] = ACTIONS(440), + [anon_sym___STACKTRACE__] = ACTIONS(440), + [sym_alias] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2839), + [anon_sym_false] = ACTIONS(2839), + [anon_sym_nil] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(2845), + [anon_sym_GT] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2845), + [anon_sym_SLASH] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2849), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2849), + [anon_sym_not] = ACTIONS(2851), + [anon_sym_AT] = ACTIONS(2853), + [anon_sym_LT_DASH] = ACTIONS(2845), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2845), + [anon_sym_when] = ACTIONS(2855), + [anon_sym_COLON_COLON] = ACTIONS(2845), + [anon_sym_EQ] = ACTIONS(2845), + [anon_sym_PIPE_PIPE] = ACTIONS(2845), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2845), + [anon_sym_or] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2845), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2845), + [anon_sym_and] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2845), + [anon_sym_BANG_EQ] = ACTIONS(2845), + [anon_sym_EQ_TILDE] = ACTIONS(2845), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2845), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2845), + [anon_sym_LT_EQ] = ACTIONS(2845), + [anon_sym_GT_EQ] = ACTIONS(2845), + [anon_sym_PIPE_GT] = ACTIONS(2845), + [anon_sym_LT_LT_LT] = ACTIONS(2845), + [anon_sym_GT_GT_GT] = ACTIONS(2845), + [anon_sym_LT_LT_TILDE] = ACTIONS(2845), + [anon_sym_TILDE_GT_GT] = ACTIONS(2845), + [anon_sym_LT_TILDE] = ACTIONS(2845), + [anon_sym_TILDE_GT] = ACTIONS(2845), + [anon_sym_LT_TILDE_GT] = ACTIONS(2845), + [anon_sym_LT_PIPE_GT] = ACTIONS(2845), + [anon_sym_in] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2845), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2845), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2845), + [anon_sym_DOT_DOT] = ACTIONS(2845), + [anon_sym_LT_GT] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_STAR_STAR] = ACTIONS(2845), + [anon_sym_CARET_CARET] = ACTIONS(2845), + [anon_sym_DASH_GT] = ACTIONS(2845), + [anon_sym_DOT] = ACTIONS(2845), + [anon_sym_after] = ACTIONS(2839), + [anon_sym_catch] = ACTIONS(2839), + [anon_sym_do] = ACTIONS(2839), + [anon_sym_else] = ACTIONS(2839), + [anon_sym_end] = ACTIONS(2839), + [anon_sym_fn] = ACTIONS(2839), + [anon_sym_rescue] = ACTIONS(2839), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2857), + }, + [1051] = { + [sym__identifier] = STATE(981), + [sym_identifier] = STATE(981), + [sym_special_identifier] = STATE(981), + [sym__quoted_i_double] = STATE(980), + [sym__quoted_i_single] = STATE(979), + [sym_tuple] = STATE(1642), + [sym_operator_identifier] = STATE(981), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(456), + [anon_sym_DOT_DOT_DOT] = ACTIONS(456), + [sym_unused_identifier] = ACTIONS(2785), + [anon_sym___MODULE__] = ACTIONS(460), + [anon_sym___DIR__] = ACTIONS(460), + [anon_sym___ENV__] = ACTIONS(460), + [anon_sym___CALLER__] = ACTIONS(460), + [anon_sym___STACKTRACE__] = ACTIONS(460), + [sym_alias] = ACTIONS(2837), + [anon_sym_true] = ACTIONS(2789), + [anon_sym_false] = ACTIONS(2789), + [anon_sym_nil] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SLASH] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_CARET] = ACTIONS(2799), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2799), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_AT] = ACTIONS(2803), + [anon_sym_LT_DASH] = ACTIONS(2795), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2795), + [anon_sym_when] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_or] = ACTIONS(2805), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2795), + [anon_sym_and] = ACTIONS(2805), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2795), + [anon_sym_EQ_TILDE] = ACTIONS(2795), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2795), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_PIPE_GT] = ACTIONS(2795), + [anon_sym_LT_LT_LT] = ACTIONS(2795), + [anon_sym_GT_GT_GT] = ACTIONS(2795), + [anon_sym_LT_LT_TILDE] = ACTIONS(2795), + [anon_sym_TILDE_GT_GT] = ACTIONS(2795), + [anon_sym_LT_TILDE] = ACTIONS(2795), + [anon_sym_TILDE_GT] = ACTIONS(2795), + [anon_sym_LT_TILDE_GT] = ACTIONS(2795), + [anon_sym_LT_PIPE_GT] = ACTIONS(2795), + [anon_sym_in] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2795), + [anon_sym_DOT_DOT] = ACTIONS(2795), + [anon_sym_LT_GT] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_STAR_STAR] = ACTIONS(2795), + [anon_sym_CARET_CARET] = ACTIONS(2795), + [anon_sym_DASH_GT] = ACTIONS(2795), + [anon_sym_DOT] = ACTIONS(2795), + [anon_sym_after] = ACTIONS(2789), + [anon_sym_catch] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_end] = ACTIONS(2789), + [anon_sym_fn] = ACTIONS(2789), + [anon_sym_rescue] = ACTIONS(2789), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2807), + }, + [1052] = { + [sym__identifier] = STATE(912), + [sym_identifier] = STATE(912), + [sym_special_identifier] = STATE(912), + [sym__quoted_i_double] = STATE(911), + [sym__quoted_i_single] = STATE(922), + [sym_tuple] = STATE(1642), + [sym_operator_identifier] = STATE(912), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(2713), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2837), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [anon_sym_nil] = ACTIONS(2717), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2727), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2731), + [anon_sym_LT_DASH] = ACTIONS(2723), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2723), + [anon_sym_when] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_or] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2723), + [anon_sym_and] = ACTIONS(2733), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_EQ_TILDE] = ACTIONS(2723), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_PIPE_GT] = ACTIONS(2723), + [anon_sym_LT_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_LT_LT_TILDE] = ACTIONS(2723), + [anon_sym_TILDE_GT_GT] = ACTIONS(2723), + [anon_sym_LT_TILDE] = ACTIONS(2723), + [anon_sym_TILDE_GT] = ACTIONS(2723), + [anon_sym_LT_TILDE_GT] = ACTIONS(2723), + [anon_sym_LT_PIPE_GT] = ACTIONS(2723), + [anon_sym_in] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2723), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_LT_GT] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_STAR_STAR] = ACTIONS(2723), + [anon_sym_CARET_CARET] = ACTIONS(2723), + [anon_sym_DASH_GT] = ACTIONS(2723), + [anon_sym_DOT] = ACTIONS(2723), + [anon_sym_after] = ACTIONS(2717), + [anon_sym_catch] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_end] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2717), + [anon_sym_rescue] = ACTIONS(2717), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2735), + }, + [1053] = { + [sym__identifier] = STATE(912), + [sym_identifier] = STATE(912), + [sym_special_identifier] = STATE(912), + [sym__quoted_i_double] = STATE(911), + [sym__quoted_i_single] = STATE(922), + [sym_tuple] = STATE(1514), + [sym_operator_identifier] = STATE(912), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(2713), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2859), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [anon_sym_nil] = ACTIONS(2717), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(87), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2727), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2731), + [anon_sym_LT_DASH] = ACTIONS(2723), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2723), + [anon_sym_when] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_or] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2723), + [anon_sym_and] = ACTIONS(2733), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_EQ_TILDE] = ACTIONS(2723), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_PIPE_GT] = ACTIONS(2723), + [anon_sym_LT_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_LT_LT_TILDE] = ACTIONS(2723), + [anon_sym_TILDE_GT_GT] = ACTIONS(2723), + [anon_sym_LT_TILDE] = ACTIONS(2723), + [anon_sym_TILDE_GT] = ACTIONS(2723), + [anon_sym_LT_TILDE_GT] = ACTIONS(2723), + [anon_sym_LT_PIPE_GT] = ACTIONS(2723), + [anon_sym_in] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2723), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_LT_GT] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_STAR_STAR] = ACTIONS(2723), + [anon_sym_CARET_CARET] = ACTIONS(2723), + [anon_sym_DASH_GT] = ACTIONS(2723), + [anon_sym_DOT] = ACTIONS(2723), + [anon_sym_after] = ACTIONS(2717), + [anon_sym_catch] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_end] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2717), + [anon_sym_rescue] = ACTIONS(2717), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2735), + }, + [1054] = { + [sym__identifier] = STATE(937), + [sym_identifier] = STATE(937), + [sym_special_identifier] = STATE(937), + [sym__quoted_i_double] = STATE(934), + [sym__quoted_i_single] = STATE(933), + [sym_tuple] = STATE(2376), + [sym_operator_identifier] = STATE(937), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(359), + [sym_unused_identifier] = ACTIONS(2737), + [anon_sym___MODULE__] = ACTIONS(363), + [anon_sym___DIR__] = ACTIONS(363), + [anon_sym___ENV__] = ACTIONS(363), + [anon_sym___CALLER__] = ACTIONS(363), + [anon_sym___STACKTRACE__] = ACTIONS(363), + [sym_alias] = ACTIONS(2865), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [anon_sym_nil] = ACTIONS(2741), + [anon_sym_DQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(574), + [anon_sym_LT] = ACTIONS(2747), + [anon_sym_GT] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_CARET] = ACTIONS(2751), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2751), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2755), + [anon_sym_LT_DASH] = ACTIONS(2747), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2747), + [anon_sym_when] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_EQ] = ACTIONS(2747), + [anon_sym_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_or] = ACTIONS(2757), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2747), + [anon_sym_and] = ACTIONS(2757), + [anon_sym_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_EQ_TILDE] = ACTIONS(2747), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2747), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_PIPE_GT] = ACTIONS(2747), + [anon_sym_LT_LT_LT] = ACTIONS(2747), + [anon_sym_GT_GT_GT] = ACTIONS(2747), + [anon_sym_LT_LT_TILDE] = ACTIONS(2747), + [anon_sym_TILDE_GT_GT] = ACTIONS(2747), + [anon_sym_LT_TILDE] = ACTIONS(2747), + [anon_sym_TILDE_GT] = ACTIONS(2747), + [anon_sym_LT_TILDE_GT] = ACTIONS(2747), + [anon_sym_LT_PIPE_GT] = ACTIONS(2747), + [anon_sym_in] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2747), + [anon_sym_DOT_DOT] = ACTIONS(2747), + [anon_sym_LT_GT] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_STAR_STAR] = ACTIONS(2747), + [anon_sym_CARET_CARET] = ACTIONS(2747), + [anon_sym_DASH_GT] = ACTIONS(2747), + [anon_sym_DOT] = ACTIONS(2747), + [anon_sym_after] = ACTIONS(2741), + [anon_sym_catch] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2741), + [anon_sym_end] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_rescue] = ACTIONS(2741), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2759), + }, + [1055] = { + [sym__identifier] = STATE(1005), + [sym_identifier] = STATE(1005), + [sym_special_identifier] = STATE(1005), + [sym__quoted_i_double] = STATE(1003), + [sym__quoted_i_single] = STATE(1002), + [sym_tuple] = STATE(2898), + [sym_operator_identifier] = STATE(1005), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [sym_unused_identifier] = ACTIONS(2761), + [anon_sym___MODULE__] = ACTIONS(613), + [anon_sym___DIR__] = ACTIONS(613), + [anon_sym___ENV__] = ACTIONS(613), + [anon_sym___CALLER__] = ACTIONS(613), + [anon_sym___STACKTRACE__] = ACTIONS(613), + [sym_alias] = ACTIONS(2867), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [anon_sym_nil] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2771), + [anon_sym_when] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_EQ] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2771), + [anon_sym_and] = ACTIONS(2781), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_EQ_TILDE] = ACTIONS(2771), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_PIPE_GT] = ACTIONS(2771), + [anon_sym_LT_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_LT_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_PIPE_GT] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2771), + [anon_sym_DOT_DOT] = ACTIONS(2771), + [anon_sym_LT_GT] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_STAR_STAR] = ACTIONS(2771), + [anon_sym_CARET_CARET] = ACTIONS(2771), + [anon_sym_DASH_GT] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_after] = ACTIONS(2765), + [anon_sym_catch] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_end] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_rescue] = ACTIONS(2765), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2783), + }, + [1056] = { + [sym__identifier] = STATE(912), + [sym_identifier] = STATE(912), + [sym_special_identifier] = STATE(912), + [sym__quoted_i_double] = STATE(911), + [sym__quoted_i_single] = STATE(922), + [sym_tuple] = STATE(1361), + [sym_operator_identifier] = STATE(912), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2711), + [aux_sym_identifier_token1] = ACTIONS(195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(195), + [sym_unused_identifier] = ACTIONS(2713), + [anon_sym___MODULE__] = ACTIONS(199), + [anon_sym___DIR__] = ACTIONS(199), + [anon_sym___ENV__] = ACTIONS(199), + [anon_sym___CALLER__] = ACTIONS(199), + [anon_sym___STACKTRACE__] = ACTIONS(199), + [sym_alias] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [anon_sym_nil] = ACTIONS(2717), + [anon_sym_DQUOTE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(267), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2727), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2731), + [anon_sym_LT_DASH] = ACTIONS(2723), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2723), + [anon_sym_when] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_or] = ACTIONS(2733), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2723), + [anon_sym_and] = ACTIONS(2733), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_EQ_TILDE] = ACTIONS(2723), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2723), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_PIPE_GT] = ACTIONS(2723), + [anon_sym_LT_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_LT_LT_TILDE] = ACTIONS(2723), + [anon_sym_TILDE_GT_GT] = ACTIONS(2723), + [anon_sym_LT_TILDE] = ACTIONS(2723), + [anon_sym_TILDE_GT] = ACTIONS(2723), + [anon_sym_LT_TILDE_GT] = ACTIONS(2723), + [anon_sym_LT_PIPE_GT] = ACTIONS(2723), + [anon_sym_in] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2723), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_LT_GT] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_STAR_STAR] = ACTIONS(2723), + [anon_sym_CARET_CARET] = ACTIONS(2723), + [anon_sym_DASH_GT] = ACTIONS(2723), + [anon_sym_DOT] = ACTIONS(2723), + [anon_sym_after] = ACTIONS(2717), + [anon_sym_catch] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_end] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2717), + [anon_sym_rescue] = ACTIONS(2717), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2735), + }, + [1057] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2869), + [aux_sym_identifier_token1] = ACTIONS(2869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2869), + [sym_unused_identifier] = ACTIONS(2869), + [anon_sym___MODULE__] = ACTIONS(2869), + [anon_sym___DIR__] = ACTIONS(2869), + [anon_sym___ENV__] = ACTIONS(2869), + [anon_sym___CALLER__] = ACTIONS(2869), + [anon_sym___STACKTRACE__] = ACTIONS(2869), + [sym_alias] = ACTIONS(2869), + [sym_integer] = ACTIONS(2869), + [sym_float] = ACTIONS(2869), + [sym_char] = ACTIONS(2869), + [anon_sym_true] = ACTIONS(2869), + [anon_sym_false] = ACTIONS(2869), + [anon_sym_nil] = ACTIONS(2869), + [sym_atom] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2869), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2869), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_GT] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2869), + [anon_sym_SLASH] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2869), + [anon_sym_PERCENT] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_CARET] = ACTIONS(2869), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2869), + [anon_sym_not] = ACTIONS(2869), + [anon_sym_AT] = ACTIONS(2869), + [anon_sym_LT_DASH] = ACTIONS(2869), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2869), + [anon_sym_when] = ACTIONS(2869), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_EQ] = ACTIONS(2869), + [anon_sym_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2869), + [anon_sym_or] = ACTIONS(2869), + [anon_sym_AMP_AMP] = ACTIONS(2869), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2869), + [anon_sym_and] = ACTIONS(2869), + [anon_sym_EQ_EQ] = ACTIONS(2869), + [anon_sym_BANG_EQ] = ACTIONS(2869), + [anon_sym_EQ_TILDE] = ACTIONS(2869), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2869), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2869), + [anon_sym_LT_EQ] = ACTIONS(2869), + [anon_sym_GT_EQ] = ACTIONS(2869), + [anon_sym_PIPE_GT] = ACTIONS(2869), + [anon_sym_LT_LT_LT] = ACTIONS(2869), + [anon_sym_GT_GT_GT] = ACTIONS(2869), + [anon_sym_LT_LT_TILDE] = ACTIONS(2869), + [anon_sym_TILDE_GT_GT] = ACTIONS(2869), + [anon_sym_LT_TILDE] = ACTIONS(2869), + [anon_sym_TILDE_GT] = ACTIONS(2869), + [anon_sym_LT_TILDE_GT] = ACTIONS(2869), + [anon_sym_LT_PIPE_GT] = ACTIONS(2869), + [anon_sym_in] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_DASH_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2869), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2869), + [anon_sym_DOT_DOT] = ACTIONS(2869), + [anon_sym_LT_GT] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_STAR_STAR] = ACTIONS(2869), + [anon_sym_CARET_CARET] = ACTIONS(2869), + [anon_sym_DASH_GT] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(2869), + [anon_sym_fn] = ACTIONS(2869), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2871), + [sym__not_in] = ACTIONS(2871), + [sym__quoted_atom_start] = ACTIONS(2871), + }, + [1058] = { + [sym__terminator] = STATE(146), + [sym_after_block] = STATE(3516), + [sym_rescue_block] = STATE(3516), + [sym_catch_block] = STATE(3516), + [sym_else_block] = STATE(3516), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3448), + [aux_sym_do_block_repeat1] = STATE(3516), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(355), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1059] = { + [sym__terminator] = STATE(161), + [sym_after_block] = STATE(3552), + [sym_rescue_block] = STATE(3552), + [sym_catch_block] = STATE(3552), + [sym_else_block] = STATE(3552), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3474), + [aux_sym_do_block_repeat1] = STATE(3552), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1032), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1060] = { + [sym__terminator] = STATE(145), + [sym_after_block] = STATE(3518), + [sym_rescue_block] = STATE(3518), + [sym_catch_block] = STATE(3518), + [sym_else_block] = STATE(3518), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3452), + [aux_sym_do_block_repeat1] = STATE(3518), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2926), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(327), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1061] = { + [sym__terminator] = STATE(158), + [sym_after_block] = STATE(3512), + [sym_rescue_block] = STATE(3512), + [sym_catch_block] = STATE(3512), + [sym_else_block] = STATE(3512), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3438), + [aux_sym_do_block_repeat1] = STATE(3512), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1014), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1062] = { + [sym__terminator] = STATE(144), + [sym_after_block] = STATE(3549), + [sym_rescue_block] = STATE(3549), + [sym_catch_block] = STATE(3549), + [sym_else_block] = STATE(3549), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3470), + [aux_sym_do_block_repeat1] = STATE(3549), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2930), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(339), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1063] = { + [sym__terminator] = STATE(169), + [sym_after_block] = STATE(3540), + [sym_rescue_block] = STATE(3540), + [sym_catch_block] = STATE(3540), + [sym_else_block] = STATE(3540), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3464), + [aux_sym_do_block_repeat1] = STATE(3540), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(343), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1064] = { + [sym__terminator] = STATE(143), + [sym_after_block] = STATE(3543), + [sym_rescue_block] = STATE(3543), + [sym_catch_block] = STATE(3543), + [sym_else_block] = STATE(3543), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3497), + [aux_sym_do_block_repeat1] = STATE(3543), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1052), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1065] = { + [sym__terminator] = STATE(175), + [sym_after_block] = STATE(3551), + [sym_rescue_block] = STATE(3551), + [sym_catch_block] = STATE(3551), + [sym_else_block] = STATE(3551), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3493), + [aux_sym_do_block_repeat1] = STATE(3551), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(319), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1066] = { + [sym__terminator] = STATE(156), + [sym_after_block] = STATE(3513), + [sym_rescue_block] = STATE(3513), + [sym_catch_block] = STATE(3513), + [sym_else_block] = STATE(3513), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3441), + [aux_sym_do_block_repeat1] = STATE(3513), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(311), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1067] = { + [sym__terminator] = STATE(172), + [sym_after_block] = STATE(3526), + [sym_rescue_block] = STATE(3526), + [sym_catch_block] = STATE(3526), + [sym_else_block] = STATE(3526), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3455), + [aux_sym_do_block_repeat1] = STATE(3526), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(994), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1068] = { + [sym__terminator] = STATE(150), + [sym_after_block] = STATE(3535), + [sym_rescue_block] = STATE(3535), + [sym_catch_block] = STATE(3535), + [sym_else_block] = STATE(3535), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3467), + [aux_sym_do_block_repeat1] = STATE(3535), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1006), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1069] = { + [sym__terminator] = STATE(152), + [sym_after_block] = STATE(3558), + [sym_rescue_block] = STATE(3558), + [sym_catch_block] = STATE(3558), + [sym_else_block] = STATE(3558), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3473), + [aux_sym_do_block_repeat1] = STATE(3558), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(331), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1070] = { + [sym__terminator] = STATE(173), + [sym_after_block] = STATE(3538), + [sym_rescue_block] = STATE(3538), + [sym_catch_block] = STATE(3538), + [sym_else_block] = STATE(3538), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3500), + [aux_sym_do_block_repeat1] = STATE(3538), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(992), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1071] = { + [sym__terminator] = STATE(148), + [sym_after_block] = STATE(3545), + [sym_rescue_block] = STATE(3545), + [sym_catch_block] = STATE(3545), + [sym_else_block] = STATE(3545), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3491), + [aux_sym_do_block_repeat1] = STATE(3545), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1004), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1072] = { + [sym__terminator] = STATE(159), + [sym_after_block] = STATE(3524), + [sym_rescue_block] = STATE(3524), + [sym_catch_block] = STATE(3524), + [sym_else_block] = STATE(3524), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3437), + [aux_sym_do_block_repeat1] = STATE(3524), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(990), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1073] = { + [sym__terminator] = STATE(153), + [sym_after_block] = STATE(3536), + [sym_rescue_block] = STATE(3536), + [sym_catch_block] = STATE(3536), + [sym_else_block] = STATE(3536), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3435), + [aux_sym_do_block_repeat1] = STATE(3536), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2952), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(976), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1074] = { + [sym__terminator] = STATE(170), + [sym_after_block] = STATE(3563), + [sym_rescue_block] = STATE(3563), + [sym_catch_block] = STATE(3563), + [sym_else_block] = STATE(3563), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3484), + [aux_sym_do_block_repeat1] = STATE(3563), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1036), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1075] = { + [sym__terminator] = STATE(167), + [sym_after_block] = STATE(3553), + [sym_rescue_block] = STATE(3553), + [sym_catch_block] = STATE(3553), + [sym_else_block] = STATE(3553), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3478), + [aux_sym_do_block_repeat1] = STATE(3553), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2956), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(323), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1076] = { + [sym__terminator] = STATE(155), + [sym_after_block] = STATE(3511), + [sym_rescue_block] = STATE(3511), + [sym_catch_block] = STATE(3511), + [sym_else_block] = STATE(3511), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3481), + [aux_sym_do_block_repeat1] = STATE(3511), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(335), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1077] = { + [sym__terminator] = STATE(140), + [sym_after_block] = STATE(3517), + [sym_rescue_block] = STATE(3517), + [sym_catch_block] = STATE(3517), + [sym_else_block] = STATE(3517), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3446), + [aux_sym_do_block_repeat1] = STATE(3517), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2960), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(347), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1078] = { + [sym__terminator] = STATE(165), + [sym_after_block] = STATE(3547), + [sym_rescue_block] = STATE(3547), + [sym_catch_block] = STATE(3547), + [sym_else_block] = STATE(3547), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3494), + [aux_sym_do_block_repeat1] = STATE(3547), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(315), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1079] = { + [sym__terminator] = STATE(168), + [sym_after_block] = STATE(3537), + [sym_rescue_block] = STATE(3537), + [sym_catch_block] = STATE(3537), + [sym_else_block] = STATE(3537), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3465), + [aux_sym_do_block_repeat1] = STATE(3537), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1012), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1080] = { + [sym__terminator] = STATE(164), + [sym_after_block] = STATE(3532), + [sym_rescue_block] = STATE(3532), + [sym_catch_block] = STATE(3532), + [sym_else_block] = STATE(3532), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3461), + [aux_sym_do_block_repeat1] = STATE(3532), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(1040), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1081] = { + [sym__terminator] = STATE(151), + [sym_after_block] = STATE(3565), + [sym_rescue_block] = STATE(3565), + [sym_catch_block] = STATE(3565), + [sym_else_block] = STATE(3565), + [aux_sym__terminator_repeat1] = STATE(1019), + [aux_sym_block_repeat2] = STATE(3487), + [aux_sym_do_block_repeat1] = STATE(3565), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(4290), + [aux_sym__terminator_token1] = ACTIONS(2873), + [anon_sym_SEMI] = ACTIONS(2968), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_COMMA] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_LT_DASH] = ACTIONS(2887), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2887), + [anon_sym_when] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2894), + [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2900), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2900), + [anon_sym_and] = ACTIONS(2900), + [anon_sym_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ] = ACTIONS(2902), + [anon_sym_EQ_TILDE] = ACTIONS(2902), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2902), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2902), + [anon_sym_LT_EQ] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2877), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2906), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2908), + [anon_sym_SLASH_SLASH] = ACTIONS(2910), + [anon_sym_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH] = ACTIONS(2912), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2912), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_LT_GT] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_STAR_STAR] = ACTIONS(2914), + [anon_sym_DASH_GT] = ACTIONS(2916), + [anon_sym_DOT] = ACTIONS(2918), + [anon_sym_after] = ACTIONS(107), + [anon_sym_catch] = ACTIONS(109), + [anon_sym_else] = ACTIONS(111), + [anon_sym_end] = ACTIONS(351), + [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LBRACK2] = ACTIONS(2920), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2922), + }, + [1082] = { + [sym__call_arguments_with_parentheses] = STATE(1087), + [aux_sym__terminator_token1] = ACTIONS(2970), + [anon_sym_SEMI] = ACTIONS(2972), + [anon_sym_LPAREN] = ACTIONS(2974), + [anon_sym_RPAREN] = ACTIONS(2972), + [anon_sym_LT] = ACTIONS(2972), + [anon_sym_GT] = ACTIONS(2972), + [anon_sym_PIPE] = ACTIONS(2972), + [anon_sym_SLASH] = ACTIONS(2972), + [anon_sym_COMMA] = ACTIONS(2972), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_LT_DASH] = ACTIONS(2972), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2972), + [anon_sym_when] = ACTIONS(2972), + [anon_sym_COLON_COLON] = ACTIONS(2972), + [anon_sym_EQ_GT] = ACTIONS(2972), + [anon_sym_EQ] = ACTIONS(2972), + [anon_sym_PIPE_PIPE] = ACTIONS(2972), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2972), + [anon_sym_or] = ACTIONS(2972), + [anon_sym_AMP_AMP] = ACTIONS(2972), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2972), + [anon_sym_and] = ACTIONS(2972), + [anon_sym_EQ_EQ] = ACTIONS(2972), + [anon_sym_BANG_EQ] = ACTIONS(2972), + [anon_sym_EQ_TILDE] = ACTIONS(2972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2972), + [anon_sym_LT_EQ] = ACTIONS(2972), + [anon_sym_GT_EQ] = ACTIONS(2972), + [anon_sym_PIPE_GT] = ACTIONS(2972), + [anon_sym_LT_LT_LT] = ACTIONS(2972), + [anon_sym_GT_GT_GT] = ACTIONS(2972), + [anon_sym_LT_LT_TILDE] = ACTIONS(2972), + [anon_sym_TILDE_GT_GT] = ACTIONS(2972), + [anon_sym_LT_TILDE] = ACTIONS(2972), + [anon_sym_TILDE_GT] = ACTIONS(2972), + [anon_sym_LT_TILDE_GT] = ACTIONS(2972), + [anon_sym_LT_PIPE_GT] = ACTIONS(2972), + [anon_sym_in] = ACTIONS(2972), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2972), + [anon_sym_SLASH_SLASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_DASH_DASH] = ACTIONS(2972), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2972), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2972), + [anon_sym_DOT_DOT] = ACTIONS(2972), + [anon_sym_LT_GT] = ACTIONS(2972), + [anon_sym_STAR] = ACTIONS(2972), + [anon_sym_STAR_STAR] = ACTIONS(2972), + [anon_sym_DASH_GT] = ACTIONS(2972), + [anon_sym_DOT] = ACTIONS(2972), + [anon_sym_after] = ACTIONS(2972), + [anon_sym_catch] = ACTIONS(2972), + [anon_sym_do] = ACTIONS(2972), + [anon_sym_else] = ACTIONS(2972), + [anon_sym_end] = ACTIONS(2972), + [anon_sym_rescue] = ACTIONS(2972), + [anon_sym_LBRACK2] = ACTIONS(2970), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2970), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2970), + }, + [1083] = { + [sym_do_block] = STATE(1105), + [aux_sym__terminator_token1] = ACTIONS(2976), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_RPAREN] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_GT] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_SLASH] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2978), + [anon_sym_when] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_EQ_GT] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2978), + [anon_sym_and] = ACTIONS(2978), + [anon_sym_EQ_EQ] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2978), + [anon_sym_EQ_TILDE] = ACTIONS(2978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2978), + [anon_sym_LT_EQ] = ACTIONS(2978), + [anon_sym_GT_EQ] = ACTIONS(2978), + [anon_sym_PIPE_GT] = ACTIONS(2978), + [anon_sym_LT_LT_LT] = ACTIONS(2978), + [anon_sym_GT_GT_GT] = ACTIONS(2978), + [anon_sym_LT_LT_TILDE] = ACTIONS(2978), + [anon_sym_TILDE_GT_GT] = ACTIONS(2978), + [anon_sym_LT_TILDE] = ACTIONS(2978), + [anon_sym_TILDE_GT] = ACTIONS(2978), + [anon_sym_LT_TILDE_GT] = ACTIONS(2978), + [anon_sym_LT_PIPE_GT] = ACTIONS(2978), + [anon_sym_in] = ACTIONS(2978), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2978), + [anon_sym_SLASH_SLASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2978), + [anon_sym_DOT_DOT] = ACTIONS(2978), + [anon_sym_LT_GT] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_STAR_STAR] = ACTIONS(2978), + [anon_sym_DASH_GT] = ACTIONS(2978), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_after] = ACTIONS(2978), + [anon_sym_catch] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(2978), + [anon_sym_else] = ACTIONS(2978), + [anon_sym_end] = ACTIONS(2978), + [anon_sym_rescue] = ACTIONS(2978), + [anon_sym_LBRACK2] = ACTIONS(2976), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2976), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2976), + }, + [1084] = { + [sym_do_block] = STATE(1338), + [aux_sym__terminator_token1] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_RPAREN] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_SLASH] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2982), + [anon_sym_when] = ACTIONS(2982), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_EQ_GT] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2982), + [anon_sym_and] = ACTIONS(2982), + [anon_sym_EQ_EQ] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2982), + [anon_sym_EQ_TILDE] = ACTIONS(2982), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2982), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(2982), + [anon_sym_GT_EQ] = ACTIONS(2982), + [anon_sym_PIPE_GT] = ACTIONS(2982), + [anon_sym_LT_LT_LT] = ACTIONS(2982), + [anon_sym_GT_GT_GT] = ACTIONS(2982), + [anon_sym_LT_LT_TILDE] = ACTIONS(2982), + [anon_sym_TILDE_GT_GT] = ACTIONS(2982), + [anon_sym_LT_TILDE] = ACTIONS(2982), + [anon_sym_TILDE_GT] = ACTIONS(2982), + [anon_sym_LT_TILDE_GT] = ACTIONS(2982), + [anon_sym_LT_PIPE_GT] = ACTIONS(2982), + [anon_sym_in] = ACTIONS(2982), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2982), + [anon_sym_SLASH_SLASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2982), + [anon_sym_DOT_DOT] = ACTIONS(2982), + [anon_sym_LT_GT] = ACTIONS(2982), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_STAR_STAR] = ACTIONS(2982), + [anon_sym_DASH_GT] = ACTIONS(2982), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_after] = ACTIONS(2982), + [anon_sym_catch] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(233), + [anon_sym_else] = ACTIONS(2982), + [anon_sym_end] = ACTIONS(2982), + [anon_sym_rescue] = ACTIONS(2982), + [anon_sym_LBRACK2] = ACTIONS(2980), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2984), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2980), + }, + [1085] = { + [sym_do_block] = STATE(1336), + [aux_sym__terminator_token1] = ACTIONS(2976), + [anon_sym_SEMI] = ACTIONS(2978), + [anon_sym_LPAREN] = ACTIONS(2978), + [anon_sym_RPAREN] = ACTIONS(2978), + [anon_sym_LT] = ACTIONS(2978), + [anon_sym_GT] = ACTIONS(2978), + [anon_sym_PIPE] = ACTIONS(2978), + [anon_sym_SLASH] = ACTIONS(2978), + [anon_sym_COMMA] = ACTIONS(2978), + [anon_sym_PLUS] = ACTIONS(2978), + [anon_sym_DASH] = ACTIONS(2978), + [anon_sym_LT_DASH] = ACTIONS(2978), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2978), + [anon_sym_when] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2978), + [anon_sym_EQ_GT] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(2978), + [anon_sym_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2978), + [anon_sym_or] = ACTIONS(2978), + [anon_sym_AMP_AMP] = ACTIONS(2978), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2978), + [anon_sym_and] = ACTIONS(2978), + [anon_sym_EQ_EQ] = ACTIONS(2978), + [anon_sym_BANG_EQ] = ACTIONS(2978), + [anon_sym_EQ_TILDE] = ACTIONS(2978), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2978), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2978), + [anon_sym_LT_EQ] = ACTIONS(2978), + [anon_sym_GT_EQ] = ACTIONS(2978), + [anon_sym_PIPE_GT] = ACTIONS(2978), + [anon_sym_LT_LT_LT] = ACTIONS(2978), + [anon_sym_GT_GT_GT] = ACTIONS(2978), + [anon_sym_LT_LT_TILDE] = ACTIONS(2978), + [anon_sym_TILDE_GT_GT] = ACTIONS(2978), + [anon_sym_LT_TILDE] = ACTIONS(2978), + [anon_sym_TILDE_GT] = ACTIONS(2978), + [anon_sym_LT_TILDE_GT] = ACTIONS(2978), + [anon_sym_LT_PIPE_GT] = ACTIONS(2978), + [anon_sym_in] = ACTIONS(2978), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2978), + [anon_sym_SLASH_SLASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH] = ACTIONS(2978), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2978), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2978), + [anon_sym_DOT_DOT] = ACTIONS(2978), + [anon_sym_LT_GT] = ACTIONS(2978), + [anon_sym_STAR] = ACTIONS(2978), + [anon_sym_STAR_STAR] = ACTIONS(2978), + [anon_sym_DASH_GT] = ACTIONS(2978), + [anon_sym_DOT] = ACTIONS(2978), + [anon_sym_after] = ACTIONS(2978), + [anon_sym_catch] = ACTIONS(2978), + [anon_sym_do] = ACTIONS(233), + [anon_sym_else] = ACTIONS(2978), + [anon_sym_end] = ACTIONS(2978), + [anon_sym_rescue] = ACTIONS(2978), + [anon_sym_LBRACK2] = ACTIONS(2976), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2986), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2976), + }, + [1086] = { + [sym_do_block] = STATE(1104), + [aux_sym__terminator_token1] = ACTIONS(2980), + [anon_sym_SEMI] = ACTIONS(2982), + [anon_sym_LPAREN] = ACTIONS(2982), + [anon_sym_RPAREN] = ACTIONS(2982), + [anon_sym_LT] = ACTIONS(2982), + [anon_sym_GT] = ACTIONS(2982), + [anon_sym_PIPE] = ACTIONS(2982), + [anon_sym_SLASH] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2982), + [anon_sym_PLUS] = ACTIONS(2982), + [anon_sym_DASH] = ACTIONS(2982), + [anon_sym_LT_DASH] = ACTIONS(2982), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2982), + [anon_sym_when] = ACTIONS(2982), + [anon_sym_COLON_COLON] = ACTIONS(2982), + [anon_sym_EQ_GT] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(2982), + [anon_sym_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2982), + [anon_sym_or] = ACTIONS(2982), + [anon_sym_AMP_AMP] = ACTIONS(2982), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2982), + [anon_sym_and] = ACTIONS(2982), + [anon_sym_EQ_EQ] = ACTIONS(2982), + [anon_sym_BANG_EQ] = ACTIONS(2982), + [anon_sym_EQ_TILDE] = ACTIONS(2982), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2982), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2982), + [anon_sym_LT_EQ] = ACTIONS(2982), + [anon_sym_GT_EQ] = ACTIONS(2982), + [anon_sym_PIPE_GT] = ACTIONS(2982), + [anon_sym_LT_LT_LT] = ACTIONS(2982), + [anon_sym_GT_GT_GT] = ACTIONS(2982), + [anon_sym_LT_LT_TILDE] = ACTIONS(2982), + [anon_sym_TILDE_GT_GT] = ACTIONS(2982), + [anon_sym_LT_TILDE] = ACTIONS(2982), + [anon_sym_TILDE_GT] = ACTIONS(2982), + [anon_sym_LT_TILDE_GT] = ACTIONS(2982), + [anon_sym_LT_PIPE_GT] = ACTIONS(2982), + [anon_sym_in] = ACTIONS(2982), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2982), + [anon_sym_SLASH_SLASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_DASH_DASH] = ACTIONS(2982), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2982), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2982), + [anon_sym_DOT_DOT] = ACTIONS(2982), + [anon_sym_LT_GT] = ACTIONS(2982), + [anon_sym_STAR] = ACTIONS(2982), + [anon_sym_STAR_STAR] = ACTIONS(2982), + [anon_sym_DASH_GT] = ACTIONS(2982), + [anon_sym_DOT] = ACTIONS(2982), + [anon_sym_after] = ACTIONS(2982), + [anon_sym_catch] = ACTIONS(2982), + [anon_sym_do] = ACTIONS(2982), + [anon_sym_else] = ACTIONS(2982), + [anon_sym_end] = ACTIONS(2982), + [anon_sym_rescue] = ACTIONS(2982), + [anon_sym_LBRACK2] = ACTIONS(2980), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2980), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2980), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 8, + [0] = 5, 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, + STATE(1248), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3680), 4, + ACTIONS(2988), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3682), 56, + ACTIONS(2990), 56, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -196382,136 +156715,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [229] = 5, + [75] = 7, ACTIONS(5), 1, sym_comment, - STATE(1529), 1, + ACTIONS(302), 1, + anon_sym_do, + ACTIONS(2992), 1, + sym__newline_before_do, + STATE(1522), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3684), 4, - sym__newline_before_do, + ACTIONS(2980), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3686), 56, + ACTIONS(2982), 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_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_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -196523,134 +156789,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [154] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(2994), 1, + anon_sym_SEMI, + STATE(292), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3579), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, anon_sym_and, - anon_sym_in, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(668), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [283] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [381] = 5, + [356] = 32, ACTIONS(5), 1, sym_comment, - STATE(1527), 1, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3000), 1, + anon_sym_SEMI, + STATE(336), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3587), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1393), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [485] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3002), 1, + anon_sym_SEMI, + STATE(289), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3586), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(664), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [614] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3004), 1, + anon_sym_SEMI, + STATE(307), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3578), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1389), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [743] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1178), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3690), 4, + ACTIONS(2976), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, 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, + ACTIONS(2978), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -196662,203 +157315,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, 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, + [818] = 5, ACTIONS(5), 1, sym_comment, - STATE(1513), 1, + STATE(1180), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3656), 4, + ACTIONS(2980), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3658), 56, + ACTIONS(2982), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -196870,79 +157385,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [750] = 8, + [893] = 32, 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, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2879), 1, anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, anon_sym_DOT, - anon_sym_AT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3006), 1, + anon_sym_SEMI, + STATE(302), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3572), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1379), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [1022] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3008), 1, + anon_sym_SEMI, + STATE(284), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3566), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(696), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [1151] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3010), 1, + anon_sym_SEMI, + STATE(276), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3595), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(692), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [1280] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -196952,59 +157744,579 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - [831] = 7, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1353] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3712), 1, - anon_sym_do, - ACTIONS(3714), 1, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2889), 1, + anon_sym_when, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3016), 1, + anon_sym_SEMI, + STATE(296), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3568), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1365), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [1482] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 4, sym__newline_before_do, - STATE(1775), 1, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1555] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3022), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3024), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1628] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1701] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3030), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3032), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1774] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3034), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3036), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [1920] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + ACTIONS(3046), 1, + sym__newline_before_do, + STATE(1517), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3656), 3, + ACTIONS(3042), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3658), 55, + ACTIONS(3044), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -197016,67 +158328,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [910] = 7, + [1999] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3712), 1, - anon_sym_do, - ACTIONS(3716), 1, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 4, sym__newline_before_do, - STATE(1761), 1, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2074] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2149] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + ACTIONS(3058), 1, + sym__newline_before_do, + STATE(1520), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3642), 3, + ACTIONS(2988), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3644), 55, + ACTIONS(2990), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -197088,136 +158540,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [989] = 7, + [2228] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_do, - ACTIONS(3718), 1, - sym__newline_before_do, - STATE(1772), 1, + STATE(1251), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(3042), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3668), 56, + ACTIONS(3044), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -197229,494 +158609,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [1143] = 8, + [2303] = 7, 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, + ACTIONS(233), 1, 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, + ACTIONS(3064), 1, 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, + STATE(1521), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3680), 3, + ACTIONS(3060), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3682), 55, + ACTIONS(3062), 55, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -197728,279 +158682,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, 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, + [2382] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3760), 4, + ACTIONS(3066), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3762), 57, + ACTIONS(3068), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198012,77 +158750,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [1994] = 8, + [2455] = 6, 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, + ACTIONS(3070), 1, + anon_sym_LPAREN, + STATE(1162), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, 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, + ACTIONS(2970), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, 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_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198094,201 +158822,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_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_in, 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, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2532] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3782), 4, + ACTIONS(3072), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3784), 57, + ACTIONS(3074), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198300,64 +158890,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2310] = 4, + [2605] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3786), 4, + ACTIONS(3076), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3788), 57, + ACTIONS(3078), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198369,64 +158959,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2383] = 4, + [2678] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3790), 4, + ACTIONS(2637), 5, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3792), 57, + ACTIONS(2639), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198438,68 +159028,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2456] = 7, + [2751] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3646), 1, - anon_sym_do, - ACTIONS(3794), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3080), 4, sym__newline_before_do, - STATE(1779), 1, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3082), 57, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2824] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1245), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3690), 3, + ACTIONS(3060), 4, + sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3692), 55, + ACTIONS(3062), 56, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198511,136 +159167,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, 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, + [2899] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3802), 4, + ACTIONS(3084), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3804), 57, + ACTIONS(3086), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198652,64 +159236,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2689] = 4, + [2972] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3340), 5, - sym__keyword_end, + ACTIONS(2609), 5, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3338), 56, + ACTIONS(2611), 56, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198721,65 +159305,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2762] = 5, + [3045] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3810), 1, - sym__keyword_end, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3806), 4, + ACTIONS(2649), 5, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3808), 56, + ACTIONS(2651), 56, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198791,65 +159374,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2837] = 5, + [3118] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3810), 1, - sym__keyword_end, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3812), 4, + ACTIONS(2641), 5, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3814), 56, + ACTIONS(2643), 56, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198861,65 +159443,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2912] = 5, + [3191] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(137), 1, - sym__keyword_end, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3816), 4, + ACTIONS(3088), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3818), 56, + ACTIONS(3090), 57, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -198931,205 +159512,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, 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_STAR_STAR, anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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, + [3264] = 7, ACTIONS(5), 1, sym_comment, - STATE(1514), 1, + ACTIONS(302), 1, + anon_sym_do, + ACTIONS(3092), 1, + sym__newline_before_do, + STATE(1516), 1, sym_do_block, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3642), 4, - sym__newline_before_do, + ACTIONS(2976), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3644), 56, + ACTIONS(2978), 55, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -199141,133 +159586,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, 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_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3285] = 4, + [3343] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3828), 4, + ACTIONS(3094), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3830), 57, + ACTIONS(3096), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -199279,64 +159653,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3358] = 4, + [3416] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3832), 4, + ACTIONS(3076), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3834), 57, + ACTIONS(3078), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -199348,64 +159722,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3431] = 4, + [3488] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3348), 5, - sym__keyword_end, + ACTIONS(3098), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3346), 56, + ACTIONS(3100), 56, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -199417,343 +159789,1628 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3504] = 4, + [3560] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3332), 5, - sym__keyword_end, + ACTIONS(3102), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3330), 56, + ACTIONS(3104), 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_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3802] = 5, + [3632] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(137), 1, - sym__keyword_end, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3666), 3, + ACTIONS(3106), 4, + sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3668), 56, + ACTIONS(3108), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3704] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3920] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3992] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4064] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4136] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4280] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4352] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4424] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4496] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4568] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4640] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4712] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4784] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3170), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3172), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4856] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4928] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5000] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3178), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3180), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5072] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3182), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3184), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5144] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3088), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3090), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -199765,62 +161422,1222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, + anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3876] = 4, + [5288] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3832), 4, + ACTIONS(3190), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3834), 56, + ACTIONS(3192), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5360] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3194), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3196), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5432] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5504] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1358), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3042), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3044), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5578] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5650] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5722] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5794] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5866] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [5938] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1354), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2988), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2990), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3218), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3220), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6084] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3222), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3224), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6228] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6300] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6372] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6444] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1353), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6518] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -199832,63 +162649,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [3948] = 4, + [6590] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3850), 4, + ACTIONS(3238), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3852), 56, + ACTIONS(3240), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6662] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6734] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [6806] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3250), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3252), 56, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -199900,273 +162920,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, 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, + [6878] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3867), 4, + ACTIONS(3254), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3869), 56, + ACTIONS(3256), 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_PIPE, anon_sym_SLASH, aux_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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -200178,922 +162988,1731 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [4318] = 6, + [6950] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3882), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - STATE(1450), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7022] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7094] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3034), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3036), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7166] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3030), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3032), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7310] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3072), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3074), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7382] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7454] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3262), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3264), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7526] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7598] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7670] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7742] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3274), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7816] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3022), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3024), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7888] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [7960] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8032] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8104] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8176] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8248] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3084), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3086), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8320] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3284), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3286), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2970), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8464] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8536] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3080), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3082), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8608] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8680] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3298), 1, + anon_sym_PIPE, + ACTIONS(3302), 1, + anon_sym_COMMA, + ACTIONS(3308), 1, + anon_sym_when, + ACTIONS(3310), 1, + anon_sym_COLON_COLON, + ACTIONS(3312), 1, + anon_sym_EQ_GT, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + STATE(1230), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3878), 4, + ACTIONS(3292), 2, 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, + aux_sym__terminator_token1, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3306), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + ACTIONS(3316), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3330), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - 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, + ACTIONS(3294), 8, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_after, @@ -201102,7 +164721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(3954), 9, + ACTIONS(3322), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -201112,1506 +164731,44 @@ static const uint16_t ts_small_parse_table[] = { 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, + [8798] = 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_binary_operator, sym__newline_before_comment, ACTIONS(3340), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3338), 56, + ACTIONS(3342), 56, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -202623,636 +164780,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [7036] = 4, + [8870] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4034), 4, + ACTIONS(3344), 4, sym__newline_before_do, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, 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, + ACTIONS(3346), 56, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -203264,20 +164848,21463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [8942] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(302), 1, + anon_sym_do, + ACTIONS(3348), 1, + sym__newline_before_do, + STATE(1650), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, + anon_sym_COLON_COLON, anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9020] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3350), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3352), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9092] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9164] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9236] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(302), 1, + anon_sym_do, + ACTIONS(3354), 1, + sym__newline_before_do, + STATE(1651), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2988), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2990), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9314] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(302), 1, + anon_sym_do, + ACTIONS(3356), 1, + sym__newline_before_do, + STATE(1655), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3042), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3044), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3358), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3360), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9464] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3362), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3364), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9536] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9608] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3366), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3368), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9680] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3370), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3372), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9752] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3374), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3376), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9824] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9896] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [9970] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3382), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3384), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10042] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10114] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10188] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10260] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3390), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3392), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10332] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3394), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3396), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10404] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3066), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3068), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10476] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10548] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3398), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3400), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10620] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3402), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3404), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3406), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3408), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10764] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2974), 1, + anon_sym_LPAREN, + STATE(1110), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2970), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10840] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3410), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3412), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10912] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3418), 1, + anon_sym_COMMA, + STATE(1231), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3414), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3416), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [10988] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COMMA, + STATE(1231), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3422), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11064] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3427), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3429), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11136] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11280] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11352] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3439), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3441), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11424] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11496] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3447), 1, + anon_sym_COMMA, + STATE(1239), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11572] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3447), 1, + anon_sym_COMMA, + STATE(1243), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11648] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3453), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3455), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11720] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11792] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11864] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3457), 1, + anon_sym_COMMA, + STATE(1243), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [11940] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3460), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3462), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3464), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3466), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12084] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12228] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3472), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3474), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12300] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12372] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12444] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3476), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3478), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12516] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12588] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12660] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 56, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12732] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3292), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3294), 56, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12804] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3427), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3429), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3346), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [12946] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13017] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 27, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13112] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13187] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13258] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13329] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3284), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3286), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13400] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3453), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3455), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13471] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3222), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3224), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13542] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3076), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3078), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13613] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13684] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13755] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13826] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3070), 1, + anon_sym_LPAREN, + STATE(1207), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2970), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13901] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [13976] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3484), 1, + anon_sym_COMMA, + STATE(1272), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14051] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3080), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3082), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14122] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14197] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14268] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14410] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14481] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14572] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14643] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14714] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14785] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14856] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3218), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3220), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14927] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3292), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3294), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [14998] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3194), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3196), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15069] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 42, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15154] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3406), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3408), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15225] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3170), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3172), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15296] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15367] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15438] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15509] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 42, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15594] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15693] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15764] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15835] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [15906] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3316), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16009] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16080] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3312), 1, + anon_sym_EQ_GT, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3316), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16185] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16256] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3298), 1, + anon_sym_PIPE, + ACTIONS(3310), 1, + anon_sym_COLON_COLON, + ACTIONS(3312), 1, + anon_sym_EQ_GT, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3316), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16436] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16578] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16651] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16722] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3298), 1, + anon_sym_PIPE, + ACTIONS(3308), 1, + anon_sym_when, + ACTIONS(3310), 1, + anon_sym_COLON_COLON, + ACTIONS(3312), 1, + anon_sym_EQ_GT, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3316), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16833] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16904] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16975] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3298), 1, + anon_sym_PIPE, + ACTIONS(3308), 1, + anon_sym_when, + ACTIONS(3310), 1, + anon_sym_COLON_COLON, + ACTIONS(3312), 1, + anon_sym_EQ_GT, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3316), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17086] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17157] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17228] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17307] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17378] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17455] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3066), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3068), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17526] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3487), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17599] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3298), 1, + anon_sym_PIPE, + ACTIONS(3312), 1, + anon_sym_EQ_GT, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3316), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17706] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 43, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17789] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2970), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17860] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17933] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3250), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3252), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18004] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18075] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18146] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3178), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3180), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18217] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3084), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3086), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18288] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3382), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3384), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18359] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3489), 1, + anon_sym_COMMA, + STATE(1375), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3414), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3416), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18434] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3390), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3392), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18505] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18576] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3394), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3396), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18718] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 31, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18811] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18898] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3034), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3036), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19040] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3030), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3032), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19111] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19182] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19253] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19324] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19395] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19466] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19563] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3398), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3400), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19634] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3402), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3404), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3410), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3412), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19918] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3439), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3441), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19989] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3460), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3462), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20060] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20131] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3464), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3466), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3472), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3474), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20344] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20415] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20486] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3476), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3478), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20628] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20699] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20770] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20841] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3374), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3376), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [20983] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3370), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3372), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21054] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3366), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3368), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21125] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3362), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3364), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21196] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3358), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3360), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21267] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3262), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3264), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21338] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21409] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21480] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21693] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3491), 1, + anon_sym_COMMA, + STATE(1375), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3422), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21768] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21839] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3500), 1, + anon_sym_COMMA, + ACTIONS(3506), 1, + anon_sym_when, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + STATE(1329), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3292), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3504), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3294), 7, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [21956] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22027] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22098] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3298), 1, + anon_sym_PIPE, + ACTIONS(3308), 1, + anon_sym_when, + ACTIONS(3310), 1, + anon_sym_COLON_COLON, + ACTIONS(3312), 1, + anon_sym_EQ_GT, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3306), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3420), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3316), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3422), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22211] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22282] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3298), 1, + anon_sym_PIPE, + ACTIONS(3308), 1, + anon_sym_when, + ACTIONS(3310), 1, + anon_sym_COLON_COLON, + ACTIONS(3312), 1, + anon_sym_EQ_GT, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3306), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3538), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3316), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3540), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22395] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3182), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3184), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22466] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3298), 1, + anon_sym_PIPE, + ACTIONS(3308), 1, + anon_sym_when, + ACTIONS(3310), 1, + anon_sym_COLON_COLON, + ACTIONS(3312), 1, + anon_sym_EQ_GT, + ACTIONS(3314), 1, + anon_sym_EQ, + ACTIONS(3324), 1, + anon_sym_in, + ACTIONS(3326), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3328), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3332), 1, + anon_sym_STAR_STAR, + ACTIONS(3334), 1, + anon_sym_DOT, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3338), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3300), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3306), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3542), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3316), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3318), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3296), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3320), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3330), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3322), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3544), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22579] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22650] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3022), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3024), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22721] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 56, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22792] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3350), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3352), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23076] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23218] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3546), 1, + anon_sym_COMMA, + STATE(1398), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23293] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23364] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23435] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23506] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3546), 1, + anon_sym_COMMA, + STATE(1272), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23652] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23722] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3394), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3396), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23792] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23862] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3066), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3068), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23932] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3548), 1, + anon_sym_COMMA, + STATE(1414), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24006] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3548), 1, + anon_sym_COMMA, + STATE(1404), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24080] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3550), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24152] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24222] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24294] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24366] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24436] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3552), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3453), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3455), 53, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24508] = 33, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3554), 1, + anon_sym_SEMI, + ACTIONS(3556), 1, + anon_sym_RPAREN, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3564), 1, + anon_sym_COMMA, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + STATE(442), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4248), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + STATE(4674), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [24636] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24710] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3601), 1, + anon_sym_COMMA, + STATE(1414), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24784] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24858] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24932] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1696), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2982), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [25004] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1697), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2976), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2978), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [25076] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25146] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25286] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25356] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25426] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25496] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3604), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3262), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3264), 53, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25568] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3606), 1, + anon_sym_LPAREN, + STATE(1734), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2970), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2972), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [25642] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25712] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 42, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25794] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25878] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25962] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3406), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3408), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26032] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3170), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3172), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26172] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3350), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3352), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26242] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2970), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26312] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3284), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3286), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26382] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 39, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26472] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26542] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26612] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 26, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26706] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26802] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26900] = 33, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3564), 1, + anon_sym_COMMA, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3608), 1, + anon_sym_SEMI, + ACTIONS(3610), 1, + anon_sym_RPAREN, + STATE(438), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4170), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + STATE(4674), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [27028] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27098] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3222), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3224), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3218), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3220), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27308] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27378] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3194), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3196), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27448] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27518] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27588] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27658] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27728] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27798] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27868] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27938] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28008] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28078] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28148] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28218] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28288] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28428] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28498] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28568] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28638] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28708] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28778] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28918] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28988] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29058] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29128] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29230] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29300] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29370] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29474] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29544] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29614] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29684] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29754] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29824] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29894] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [29964] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30104] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30174] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30282] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30352] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30422] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3262), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3264), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30492] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3506), 1, + anon_sym_when, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30602] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3506), 1, + anon_sym_when, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30712] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30782] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30852] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30922] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30992] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31062] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 55, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31132] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3358), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3360), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3362), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3364), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31272] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31350] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3366), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3368), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31420] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3370), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3372), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31490] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3453), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3455), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31560] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3374), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3376), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31630] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31706] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3612), 1, + aux_sym__terminator_token1, + ACTIONS(3615), 1, + anon_sym_SEMI, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3628), 1, + anon_sym_when, + ACTIONS(3630), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + STATE(258), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(3594), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3626), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3656), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [31826] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31932] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 30, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32024] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3628), 1, + anon_sym_when, + ACTIONS(3630), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3662), 1, + aux_sym__terminator_token1, + ACTIONS(3665), 1, + anon_sym_SEMI, + STATE(259), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(3582), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3626), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1321), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [32144] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32214] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_after, anon_sym_catch, @@ -203285,134 +186312,3126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7738] = 30, + [32300] = 4, 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, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 3, sym__not_in, - ACTIONS(4070), 1, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32370] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32440] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3034), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3036), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32510] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3476), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3478), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32580] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32650] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3506), 1, + anon_sym_when, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3504), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3422), 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(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [32762] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3472), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3474), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32832] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3464), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3466), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32902] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3030), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3032), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [32972] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3460), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3462), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33042] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3506), 1, + anon_sym_when, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3504), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3538), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3540), 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(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [33154] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3496), 1, + anon_sym_PIPE, + ACTIONS(3506), 1, + anon_sym_when, + ACTIONS(3508), 1, + anon_sym_COLON_COLON, + ACTIONS(3510), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, + anon_sym_EQ, + ACTIONS(3522), 1, + anon_sym_in, + ACTIONS(3524), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3526), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3530), 1, + anon_sym_STAR_STAR, + ACTIONS(3532), 1, + anon_sym_DOT, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(3536), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3498), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3502), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3504), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3542), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3514), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3516), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3494), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3518), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3528), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3544), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3520), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [33266] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3439), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3441), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33336] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33406] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33476] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3410), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3412), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33546] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3402), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3404), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33616] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3398), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3400), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33686] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33756] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3022), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3024), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33826] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33896] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3084), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3086), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [33966] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3076), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3078), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34036] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3080), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3082), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34106] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 55, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34176] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3178), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3180), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34246] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(405), 1, + anon_sym_do, + ACTIONS(3668), 1, + sym__newline_before_do, + STATE(2223), 1, + sym_do_block, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2982), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [34322] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(405), 1, + anon_sym_do, + ACTIONS(3670), 1, + sym__newline_before_do, + STATE(2243), 1, + sym_do_block, + ACTIONS(2976), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2978), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [34398] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3250), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3252), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34468] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34538] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34608] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3344), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3346), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34678] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3382), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3384), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34748] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3390), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3392), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [34818] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3672), 1, + anon_sym_SEMI, + ACTIONS(3674), 1, + anon_sym_RPAREN, + STATE(360), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4259), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [34943] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3186), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3188), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [35012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3398), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3400), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35081] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3676), 1, + anon_sym_SEMI, + ACTIONS(3678), 1, + anon_sym_RPAREN, + STATE(374), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4242), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [35206] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(910), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3554), 1, + anon_sym_SEMI, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + STATE(442), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4248), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [35331] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3394), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3396), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35400] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35485] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3390), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3392), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35554] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1751), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3680), 1, anon_sym_SEMI, STATE(419), 1, sym__terminator, - STATE(1309), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4165), 1, - aux_sym_do_block_repeat2, + STATE(4155), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3559), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3545), 3, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3547), 3, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3551), 4, + ACTIONS(3558), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1822), 5, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [35679] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3382), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3384), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, 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, + [35748] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4072), 4, - sym__newline_before_do, + ACTIONS(3344), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4074), 56, + ACTIONS(3346), 54, anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -203424,930 +189443,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [35817] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3682), 1, aux_sym_sigil_token3, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [7934] = 4, + [35888] = 32, 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, + ACTIONS(914), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - aux_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, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(4082), 56, - anon_sym_SEMI, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - aux_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, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, sym__not_in, - ACTIONS(4094), 1, + ACTIONS(3684), 1, anon_sym_SEMI, - STATE(414), 1, + STATE(395), 1, sym__terminator, - STATE(1309), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4163), 1, - aux_sym_do_block_repeat2, + STATE(4273), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3559), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3545), 3, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3547), 3, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3551), 4, + ACTIONS(3558), 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, + ACTIONS(3583), 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, + ACTIONS(3593), 6, anon_sym_PLUS_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, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -204357,5537 +189619,480 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [8922] = 30, + [36013] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_LF, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3531), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3012), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3014), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - 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_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(3564), 1, + anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(3566), 1, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36082] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3080), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3082), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3076), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3078), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36220] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3084), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3086), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36289] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3254), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3256), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3246), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3248), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36427] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(926), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, ACTIONS(3570), 1, - anon_sym_LBRACK2, - ACTIONS(3572), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, sym__not_in, - ACTIONS(4096), 1, + ACTIONS(3686), 1, anon_sym_SEMI, - STATE(409), 1, + STATE(420), 1, sym__terminator, - STATE(1309), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4139), 1, - aux_sym_do_block_repeat2, + STATE(4267), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(3562), 2, anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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, + ACTIONS(3568), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, + anon_sym_and, + ACTIONS(3558), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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, + ACTIONS(3583), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, + ACTIONS(3593), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -209897,198 +190102,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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, + [36552] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_op, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3694), 4, + aux_sym__terminator_token1, + ACTIONS(3242), 3, sym__newline_before_do, sym__not_in, - anon_sym_LF, anon_sym_LBRACK2, - ACTIONS(3696), 56, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3244), 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_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -210100,63 +190154,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36621] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3238), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3240), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -210168,63 +190219,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36690] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3214), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3216), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -210236,62 +190284,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3210), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3212), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -210303,62 +190349,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36828] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3206), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3208), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -210370,149 +190414,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36897] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3174), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3176), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(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, @@ -210524,65 +190479,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [36966] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3162), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3164), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, aux_sym_sigil_token3, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -210594,135 +190544,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [15704] = 4, + [37035] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3850), 4, - sym__newline_before_do, + ACTIONS(3178), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3852), 55, + ACTIONS(3180), 54, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -210734,219 +190605,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, 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_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [15963] = 4, + [37104] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4246), 4, - sym__newline_before_do, + ACTIONS(3166), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4248), 55, + ACTIONS(3168), 54, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -210958,147 +190670,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, 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_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [16141] = 4, + [37173] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4250), 4, - sym__newline_before_do, + ACTIONS(3439), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4252), 55, + ACTIONS(3441), 54, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -211110,442 +190735,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, 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, + [37242] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4226), 4, - sym__newline_before_do, + ACTIONS(3250), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4228), 55, + ACTIONS(3252), 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_PIPE, anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - 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_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(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_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -211555,127 +190800,60 @@ static const uint16_t ts_small_parse_table[] = { 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_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [16720] = 4, + [37311] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4200), 4, - sym__newline_before_do, + ACTIONS(2637), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4202), 55, + ACTIONS(2639), 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_PIPE, anon_sym_SLASH, aux_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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -211687,1362 +190865,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, 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_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [16935] = 4, + [37380] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4222), 4, - sym__newline_before_do, + ACTIONS(2649), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4224), 55, + ACTIONS(2651), 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_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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -213054,8134 +190930,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - aux_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_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [18472] = 4, + [37449] = 32, 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(3342), 55, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - aux_sym_sigil_token3, + ACTIONS(3570), 1, anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, 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, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, sym__not_in, - anon_sym_LF, - anon_sym_LBRACK2, - ACTIONS(3338), 55, + ACTIONS(3608), 1, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - aux_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, + STATE(438), 1, sym__terminator, - STATE(1310), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4158), 1, - aux_sym_source_repeat1, + STATE(4170), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4364), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(4378), 2, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4380), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4366), 3, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4368), 3, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4372), 4, + ACTIONS(3558), 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, + ACTIONS(3583), 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, + ACTIONS(3593), 6, anon_sym_PLUS_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, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -221191,106 +191040,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [27133] = 4, + [37574] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_op, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3348), 3, + aux_sym__terminator_token1, + ACTIONS(3158), 3, + sym__newline_before_do, 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, + ACTIONS(3160), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, anon_sym_SLASH, aux_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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -221302,61 +191092,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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_do, + [37643] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3154), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3156), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -221368,61 +191157,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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_do, + [37712] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3150), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3152), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -221434,392 +191222,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + anon_sym_do, + [37781] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_op, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4172), 3, + aux_sym__terminator_token1, + ACTIONS(3088), 3, + sym__newline_before_do, 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, + ACTIONS(3090), 53, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -221831,129 +191287,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [37850] = 4, 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, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4172), 3, + aux_sym__terminator_token1, + ACTIONS(3146), 3, sym__newline_before_do, sym__not_in, - anon_sym_LF, - ACTIONS(4174), 52, - anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_LBRACK2, + ACTIONS(3148), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -221965,67 +191352,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [27981] = 8, + [37919] = 4, 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, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4308), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4172), 3, + aux_sym__terminator_token1, + ACTIONS(3142), 3, sym__newline_before_do, sym__not_in, - anon_sym_LF, - ACTIONS(4174), 50, - anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_LBRACK2, + ACTIONS(3144), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -222037,207 +191417,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_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_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [28059] = 4, + [37988] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_op, + ACTIONS(3), 3, + sym__newline_before_binary_operator, 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, + aux_sym__terminator_token1, + ACTIONS(3138), 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_LBRACK2, + ACTIONS(3140), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -222249,8082 +191482,56 @@ static const uint16_t ts_small_parse_table[] = { 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_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - anon_sym_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, + [38057] = 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_binary_operator, 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, + aux_sym__terminator_token1, 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_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -230336,61 +191543,1299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [37157] = 4, + [38126] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4222), 3, + ACTIONS(3288), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4224), 55, + ACTIONS(3290), 54, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38195] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38264] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38402] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38471] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38540] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38609] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38678] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38747] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38816] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38885] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [38954] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39023] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39092] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39161] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39230] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39299] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39368] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39437] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 53, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -230402,61 +192847,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [39506] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4222), 3, + ACTIONS(3150), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4224), 55, + ACTIONS(3152), 54, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -230468,327 +192908,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + [39575] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_op, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4112), 3, + aux_sym__terminator_token1, + ACTIONS(3018), 3, + sym__newline_before_do, 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, + ACTIONS(3020), 53, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -230800,61 +192977,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [39644] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4120), 3, + ACTIONS(3154), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4122), 55, + ACTIONS(3156), 54, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -230866,61 +193038,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [37721] = 4, + [39713] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4124), 3, + ACTIONS(3158), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4126), 55, + ACTIONS(3160), 54, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -230932,61 +193103,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [37791] = 4, + [39782] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4128), 3, + ACTIONS(3162), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(4130), 55, + ACTIONS(3164), 54, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -230998,61 +193168,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [37861] = 4, + [39851] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3732), 3, + ACTIONS(3174), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3734), 55, + ACTIONS(3176), 54, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39920] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [39989] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40058] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40127] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3022), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3024), 53, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -231064,61 +193497,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [40196] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3072), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3074), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, + anon_sym_COLON_COLON, anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37931] = 4, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [40265] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3662), 3, + ACTIONS(2609), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3664), 55, + ACTIONS(2611), 54, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -231130,63 +193623,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [38001] = 5, + [40334] = 4, ACTIONS(5), 1, sym_comment, - STATE(1957), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40403] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40472] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40541] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3026), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3028), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [40610] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(405), 1, + anon_sym_do, + ACTIONS(3690), 1, + sym__newline_before_do, + STATE(2270), 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, + ACTIONS(3060), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3644), 53, - anon_sym_LPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3062), 51, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -231198,848 +193956,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_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, + anon_sym_STAR_STAR, + anon_sym_DOT, + [40685] = 4, ACTIONS(5), 1, sym_comment, - STATE(1963), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [40754] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(405), 1, + anon_sym_do, + ACTIONS(3692), 1, + sym__newline_before_do, + STATE(2273), 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, + ACTIONS(2988), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3658), 53, - anon_sym_LPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2990), 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [40829] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(405), 1, 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, + ACTIONS(3694), 1, 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, + STATE(2275), 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, + ACTIONS(3042), 2, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3682), 52, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3044), 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, - 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_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -232051,1844 +194157,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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_binary_operator, sym__newline_before_comment, - ACTIONS(3348), 3, + ACTIONS(3238), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3346), 54, + ACTIONS(3240), 54, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -233900,23 +194217,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -233925,35 +194237,44 @@ static const uint16_t ts_small_parse_table[] = { [40973] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_op, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3332), 3, + aux_sym__terminator_token1, + ACTIONS(3130), 3, + sym__newline_before_do, sym__not_in, - anon_sym_LF, anon_sym_LBRACK2, - ACTIONS(3330), 54, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(3132), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -233965,259 +194286,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - aux_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, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, [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_binary_operator, 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, + aux_sym__terminator_token1, + ACTIONS(3126), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(4206), 53, + ACTIONS(3128), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, aux_sym_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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -234229,68 +194351,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [41111] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 53, + anon_sym_RPAREN, 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_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(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, @@ -234300,80 +194416,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(4174), 26, - anon_sym_SEMI, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [41180] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [41249] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(894), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, anon_sym_DASH_GT, - anon_sym_COLON_COLON, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, 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, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, sym__not_in, - ACTIONS(4172), 1, - anon_sym_LF, + ACTIONS(3696), 1, + anon_sym_SEMI, + STATE(407), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4148), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3557), 2, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3559), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3551), 4, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3549), 5, + ACTIONS(3583), 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, + ACTIONS(3593), 6, anon_sym_PLUS_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, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -234383,548 +194587,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(4174), 21, - anon_sym_SEMI, + [41374] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1559), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, 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, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(4182), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + ACTIONS(3573), 1, anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, + ACTIONS(3575), 1, anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, anon_sym_in, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41891] = 18, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3698), 1, + anon_sym_SEMI, + STATE(389), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4252), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [41499] = 32, 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(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, 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, + ACTIONS(3573), 1, anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, + ACTIONS(3575), 1, anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, anon_sym_in, - anon_sym_COMMA, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42057] = 4, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3700), 1, + anon_sym_SEMI, + ACTIONS(3702), 1, + anon_sym_RPAREN, + STATE(357), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4234), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [41624] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(3742), 3, + aux_sym__terminator_token1, + ACTIONS(3114), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3744), 53, - anon_sym_LPAREN, + ACTIONS(3116), 53, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -234936,1026 +194825,1457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [41693] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41762] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41831] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3410), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3412), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41900] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [41969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3110), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3112), 53, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [42126] = 25, + [42038] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3531), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, 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_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(3566), 1, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [42107] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3102), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3104), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [42176] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3266), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3268), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [42245] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(902), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, 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, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3700), 1, anon_sym_SEMI, + STATE(357), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4234), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [42370] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1757), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, 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, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(3330), 53, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3704), 1, + anon_sym_SEMI, + STATE(418), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4177), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3543), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3557), 2, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3559), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3545), 3, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3547), 3, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3551), 4, + ACTIONS(3558), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3549), 5, + ACTIONS(3583), 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, + ACTIONS(3593), 6, anon_sym_PLUS_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, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [42495] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3460), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3462), 54, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42564] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3464), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3466), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42633] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3472), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3474), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42702] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [42771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3258), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3260), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [42840] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(938), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, 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, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(4194), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3706), 1, + anon_sym_SEMI, + STATE(410), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4178), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3557), 2, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 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, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, anon_sym_PLUS_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, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [42965] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3476), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3478), 54, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [43034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3226), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3228), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [43103] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3198), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3200), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [43172] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_DASH_GT, - anon_sym_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, + [43267] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(137), 1, - sym__keyword_end, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(3820), 3, + aux_sym__terminator_token1, + ACTIONS(2637), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3822), 52, + ACTIONS(2639), 52, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -235967,544 +196287,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_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_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [43273] = 4, + [43336] = 32, 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(4088), 54, + ACTIONS(3554), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, sym__not_in, - ACTIONS(4172), 1, - anon_sym_LF, + ACTIONS(3708), 1, + anon_sym_RPAREN, + STATE(442), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4248), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3557), 2, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3559), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3545), 3, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3547), 3, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3551), 4, + ACTIONS(3558), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3549), 5, + ACTIONS(3583), 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, + ACTIONS(3593), 6, anon_sym_PLUS_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, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -236514,706 +196393,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(4174), 11, - anon_sym_SEMI, + [43461] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, 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, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(3916), 53, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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_when, + ACTIONS(3573), 1, anon_sym_COLON_COLON, - anon_sym_PIPE, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3686), 1, + anon_sym_SEMI, + ACTIONS(3710), 1, + anon_sym_RPAREN, + STATE(420), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4267), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -237223,92 +196486,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + [43586] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - ACTIONS(3531), 1, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1721), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 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(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3712), 1, + anon_sym_SEMI, + STATE(426), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4226), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3557), 2, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3559), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3545), 3, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3547), 3, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3551), 4, + ACTIONS(3558), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3549), 5, + ACTIONS(3583), 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, + ACTIONS(3593), 6, anon_sym_PLUS_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, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -237318,640 +196579,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(4174), 10, - anon_sym_SEMI, + [43711] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1603), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, 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, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(3818), 52, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(3570), 1, 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, + ACTIONS(3573), 1, anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, + ACTIONS(3575), 1, 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, + ACTIONS(3577), 1, anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, + ACTIONS(3587), 1, 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, + ACTIONS(3589), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, anon_sym_STAR_STAR, + ACTIONS(3597), 1, anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, + ACTIONS(3599), 1, 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, + ACTIONS(3714), 1, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - aux_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, + STATE(406), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4215), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -237961,60 +196672,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + [43836] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(4018), 3, + aux_sym__terminator_token1, + ACTIONS(3480), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(4020), 53, + ACTIONS(3482), 53, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -238026,125 +196724,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_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_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [45502] = 4, + [43905] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(4022), 3, + aux_sym__terminator_token1, + ACTIONS(3288), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(4024), 53, + ACTIONS(3290), 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_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -238156,971 +196789,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [43974] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + aux_sym__terminator_token1, + ACTIONS(3340), 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, aux_sym_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_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -239132,59 +196854,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_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_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [46675] = 4, + [44043] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3842), 3, + ACTIONS(3378), 3, sym__not_in, - anon_sym_LF, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3844), 54, + ACTIONS(3380), 54, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON_COLON, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -239196,604 +196915,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [46744] = 4, + [44112] = 25, 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, + ACTIONS(2879), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, + ACTIONS(2892), 1, anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, + ACTIONS(2894), 1, anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, 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, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, 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, + ACTIONS(2922), 1, 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, + ACTIONS(3538), 1, + aux_sym__terminator_token1, + ACTIONS(3716), 1, anon_sym_when, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3557), 2, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3559), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3545), 3, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3547), 3, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3551), 4, + ACTIONS(2877), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3549), 5, + ACTIONS(2902), 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, + ACTIONS(2912), 6, anon_sym_PLUS_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, + ACTIONS(3540), 8, anon_sym_SEMI, + anon_sym_COMMA, 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, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -239803,4924 +197018,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + [44223] = 32, 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, + ACTIONS(918), 1, anon_sym_RPAREN, - anon_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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, 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, + ACTIONS(2916), 1, 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, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(4260), 54, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - 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, + ACTIONS(3573), 1, anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, + ACTIONS(3575), 1, anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, 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, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, anon_sym_SLASH_SLASH, - ACTIONS(3539), 1, + ACTIONS(3595), 1, anon_sym_STAR_STAR, - ACTIONS(3541), 1, + ACTIONS(3597), 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, + ACTIONS(3599), 1, 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, + ACTIONS(3676), 1, 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, + STATE(374), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4746), 1, - aux_sym_block_repeat1, + STATE(4242), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4475), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4461), 3, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4463), 3, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4467), 4, + ACTIONS(3558), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4465), 5, + ACTIONS(3583), 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, + ACTIONS(3593), 6, anon_sym_PLUS_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, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244730,43 +197111,4345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [52708] = 5, + [44348] = 4, ACTIONS(5), 1, sym_comment, - STATE(2560), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44417] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3542), 1, + aux_sym__terminator_token1, + ACTIONS(3716), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2887), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3544), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [44528] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3374), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3376), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3370), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3372), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44666] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44735] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3366), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3368), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44804] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3362), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3364), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44873] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3358), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3360), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [44942] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45011] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45080] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3262), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3264), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45149] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3706), 1, + anon_sym_SEMI, + ACTIONS(3718), 1, + anon_sym_RPAREN, + STATE(410), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4178), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [45274] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45343] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45412] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3066), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3068), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [45550] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45619] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45688] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45757] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45826] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45895] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [45964] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3194), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3196), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46033] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3218), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3220), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46171] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 30, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46262] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3030), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3032), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [46331] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3034), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3036), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [46400] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [46469] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46538] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3222), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3224), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46607] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 54, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46676] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2641), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2643), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [46745] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2609), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2611), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [46814] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3720), 1, + anon_sym_COMMA, + STATE(1704), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46887] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3723), 1, + anon_sym_COMMA, + STATE(1704), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [46960] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3723), 1, + anon_sym_COMMA, + STATE(1705), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47033] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47138] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47213] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47290] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3716), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47399] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47468] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47537] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 42, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47618] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [47689] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3056), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [47760] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47843] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3284), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3286), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [47912] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3716), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48021] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48104] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 39, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48193] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1691), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3725), 1, + anon_sym_SEMI, + STATE(351), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4157), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48318] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2970), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48387] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3696), 1, + anon_sym_SEMI, + ACTIONS(3727), 1, + anon_sym_RPAREN, + STATE(407), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4148), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48512] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2879), 1, + anon_sym_PIPE, + ACTIONS(2892), 1, + anon_sym_COLON_COLON, + ACTIONS(2894), 1, + anon_sym_EQ_GT, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2898), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2900), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2902), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [48619] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1663), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3729), 1, + anon_sym_SEMI, + STATE(423), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4181), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [48744] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3731), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3270), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3272), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [48815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2641), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [48884] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2609), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [48953] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3402), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3404), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49022] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2637), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2639), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [49091] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3094), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3096), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [49160] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1851), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(3642), 3, + aux_sym__terminator_token1, + ACTIONS(3060), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3644), 51, - anon_sym_LPAREN, + ACTIONS(3062), 52, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -244778,254 +201461,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [52778] = 5, + [49231] = 4, ACTIONS(5), 1, sym_comment, - STATE(2554), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3406), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3408), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [49300] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1850), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(3656), 3, + aux_sym__terminator_token1, + ACTIONS(2988), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3658), 51, - anon_sym_LPAREN, + ACTIONS(2990), 52, anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - 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_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + anon_sym_PIPE, anon_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_GT, anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -245037,22465 +201592,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_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, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, - 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, + [49371] = 5, ACTIONS(5), 1, sym_comment, - STATE(3077), 1, + STATE(1847), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(3656), 3, + aux_sym__terminator_token1, + ACTIONS(3042), 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, + ACTIONS(3044), 52, 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_LT, + anon_sym_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -267507,73 +201658,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_PLUS, anon_sym_DASH_DASH_DASH, anon_sym_DOT_DOT, anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_in, - anon_sym_COMMA, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_do, - [78339] = 12, + [49442] = 4, 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_binary_operator, sym__newline_before_comment, - ACTIONS(4172), 2, + ACTIONS(3170), 3, sym__not_in, - anon_sym_LF, - ACTIONS(4378), 2, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3172), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, 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_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, + anon_sym_and, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PIPE_GT, @@ -267585,285 +201719,162 @@ static const uint16_t ts_small_parse_table[] = { 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_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [78422] = 23, + [49511] = 21, 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, + ACTIONS(2894), 1, anon_sym_EQ_GT, - ACTIONS(4386), 1, + ACTIONS(2896), 1, + anon_sym_EQ, + ACTIONS(2906), 1, anon_sym_in, - ACTIONS(4388), 1, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(4390), 1, + ACTIONS(2922), 1, sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4378), 2, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4380), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4366), 3, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4368), 3, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4372), 4, + ACTIONS(2877), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4370), 5, + ACTIONS(2902), 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, + ACTIONS(2912), 6, anon_sym_PLUS_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, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - 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, + [49614] = 20, 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, + ACTIONS(2896), 1, anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, + ACTIONS(2906), 1, anon_sym_in, - anon_sym_COMMA, - [78594] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3348), 2, - sym__not_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, 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, + ACTIONS(2922), 1, sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4378), 2, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4380), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4366), 3, + ACTIONS(2898), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4368), 3, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4372), 4, + ACTIONS(2877), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4370), 5, + ACTIONS(2902), 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, + ACTIONS(2912), 6, anon_sym_PLUS_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, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -267873,74 +201884,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(4174), 10, + ACTIONS(3380), 14, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [78764] = 20, + [49715] = 18, 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, + ACTIONS(2906), 1, anon_sym_in, - ACTIONS(4388), 1, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(4390), 1, + ACTIONS(2922), 1, sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4378), 2, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 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, + ACTIONS(2900), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4372), 4, + ACTIONS(2877), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4370), 5, + ACTIONS(2902), 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, + ACTIONS(2912), 6, anon_sym_PLUS_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, + ACTIONS(2904), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -267950,41024 +201959,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(4174), 12, + ACTIONS(3380), 18, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_PIPE, + anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, + anon_sym_COLON_COLON, anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [78863] = 4, + [49812] = 32, 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, + ACTIONS(934), 1, anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, 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, + ACTIONS(2916), 1, anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_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, + ACTIONS(2920), 1, anon_sym_LBRACK2, - ACTIONS(4154), 49, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(3570), 1, 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, + ACTIONS(3573), 1, anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, + ACTIONS(3575), 1, 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, + ACTIONS(3577), 1, anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_when, - anon_sym_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(3587), 1, 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, + ACTIONS(3589), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, anon_sym_STAR_STAR, + ACTIONS(3597), 1, anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_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, + ACTIONS(3599), 1, sym__not_in, - ACTIONS(5279), 1, - anon_sym_LF, - ACTIONS(5282), 1, + ACTIONS(3608), 1, anon_sym_SEMI, STATE(438), 1, sym__terminator, - STATE(1319), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4791), 1, - aux_sym_source_repeat1, + STATE(4170), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5080), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(5094), 2, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5096), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5082), 3, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5084), 3, + ACTIONS(3581), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5088), 4, + ACTIONS(3558), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5086), 5, + ACTIONS(3583), 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, + ACTIONS(3593), 6, anon_sym_PLUS_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, + ACTIONS(3585), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -308977,65080 +202071,114801 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [124473] = 4, + [49937] = 32, 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1695), 1, anon_sym_RPAREN, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_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, + ACTIONS(2883), 1, 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, + ACTIONS(2916), 1, anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_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, + ACTIONS(2920), 1, 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, + ACTIONS(3560), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_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, + ACTIONS(3573), 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, + ACTIONS(3575), 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, + ACTIONS(3577), 1, 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, + ACTIONS(3587), 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, + ACTIONS(3589), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5749), 1, + ACTIONS(3591), 1, anon_sym_SLASH_SLASH, - ACTIONS(5751), 1, + ACTIONS(3595), 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, + ACTIONS(3597), 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, + ACTIONS(3599), 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, + ACTIONS(3733), 1, anon_sym_SEMI, - STATE(382), 1, + STATE(400), 1, sym__terminator, - STATE(1309), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4147), 1, - aux_sym_do_block_repeat2, + STATE(4198), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50062] = 32, 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3735), 1, anon_sym_SEMI, - STATE(183), 1, + ACTIONS(3737), 1, + anon_sym_RPAREN, + STATE(422), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4070), 1, - aux_sym_do_block_repeat1, + STATE(4160), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50187] = 32, 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, + ACTIONS(930), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3739), 1, anon_sym_SEMI, - STATE(183), 1, + STATE(361), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4015), 1, - aux_sym_do_block_repeat1, + STATE(4209), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50312] = 32, 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1567), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3741), 1, anon_sym_SEMI, - STATE(373), 1, + STATE(441), 1, sym__terminator, - STATE(1309), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4147), 1, - aux_sym_do_block_repeat2, + STATE(4220), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50437] = 32, 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3739), 1, anon_sym_SEMI, - STATE(183), 1, + ACTIONS(3743), 1, + anon_sym_RPAREN, + STATE(361), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4141), 1, - aux_sym_do_block_repeat1, + STATE(4209), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50562] = 32, 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, + ACTIONS(922), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3745), 1, anon_sym_SEMI, STATE(372), 1, sym__terminator, - STATE(1309), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4147), 1, - aux_sym_do_block_repeat2, + STATE(4269), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50687] = 32, 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1599), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3747), 1, anon_sym_SEMI, - STATE(369), 1, + STATE(403), 1, sym__terminator, - STATE(1309), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4147), 1, - aux_sym_do_block_repeat2, + STATE(4232), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50812] = 32, 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3745), 1, anon_sym_SEMI, - STATE(183), 1, + ACTIONS(3749), 1, + anon_sym_RPAREN, + STATE(372), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4141), 1, - aux_sym_do_block_repeat1, + STATE(4269), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [50937] = 4, 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, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2996), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2998), 53, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [51006] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3280), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3282), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [51075] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(898), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3735), 1, anon_sym_SEMI, + STATE(422), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4160), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [51200] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1725), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3751), 1, + anon_sym_SEMI, + STATE(425), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4191), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [51325] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51398] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3453), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3455), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51467] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3276), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3278), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [51536] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3230), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3232), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [51605] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3234), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3236), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [51674] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2906), 1, + anon_sym_in, + ACTIONS(2908), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2910), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2914), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(2922), 1, + sym__not_in, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2881), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2885), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2877), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2912), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2904), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 26, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51767] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3350), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3352), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51836] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51909] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_DOT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 53, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [51982] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2651), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [52051] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52120] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3684), 1, + anon_sym_SEMI, + ACTIONS(3753), 1, + anon_sym_RPAREN, STATE(395), 1, sym__terminator, - STATE(1309), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4147), 1, - aux_sym_do_block_repeat2, + STATE(4273), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [52245] = 4, 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, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [52314] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 54, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52383] = 32, 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, + ACTIONS(906), 1, + anon_sym_RPAREN, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3672), 1, anon_sym_SEMI, - STATE(183), 1, + STATE(360), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4141), 1, - aux_sym_do_block_repeat1, + STATE(4259), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [52508] = 32, 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1565), 1, + anon_sym_RPAREN, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3570), 1, + anon_sym_when, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3755), 1, anon_sym_SEMI, STATE(367), 1, sym__terminator, - STATE(1309), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4147), 1, - aux_sym_do_block_repeat2, + STATE(4275), 1, + aux_sym_block_repeat2, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [52633] = 4, 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, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 52, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [52701] = 4, 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, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3453), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3455), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [52769] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 52, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [52837] = 4, 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, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3234), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3236), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [52905] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3230), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3232), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [52973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3224), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53041] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3218), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3220), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53109] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3194), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3196), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53177] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3388), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53245] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 52, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [53313] = 4, 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, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3388), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53381] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3386), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [53453] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3388), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53521] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2200), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2980), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2982), 50, 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, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53591] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(1659), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [53659] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3284), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3286), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53727] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [53795] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [53863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2970), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2972), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3350), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3352), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [53999] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [54067] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3056), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [54135] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [54203] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [54271] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3170), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3172), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [54339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3406), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3408), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [54407] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [54475] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [54543] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [54611] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [54679] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [54747] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [54815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3468), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3470), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [54883] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [54951] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [55019] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [55087] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3060), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3062), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [55223] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3204), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55291] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3204), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55359] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3202), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [55431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3204), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55499] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3262), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3264), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55567] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [55635] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, anon_sym_after, - ACTIONS(1661), 1, anon_sym_catch, - ACTIONS(1663), 1, anon_sym_else, - ACTIONS(1669), 1, + anon_sym_end, anon_sym_rescue, + [55707] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [55775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [55843] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3276), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3278), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55911] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3280), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3282), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [55979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3358), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3360), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [56047] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3362), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3364), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [56115] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [56183] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3366), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3368), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [56251] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3370), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3372), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [56319] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3374), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3376), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [56387] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56459] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 52, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56531] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [56599] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3380), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [56667] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [56735] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [56803] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3761), 1, + anon_sym_LPAREN, + STATE(2146), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2970), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [56875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [56943] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3380), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [57011] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57215] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57283] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57351] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57419] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57487] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + ACTIONS(3763), 1, + sym__newline_before_do, + STATE(2923), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2980), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2982), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [57561] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57629] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57697] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [57769] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3098), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3100), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [57837] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57905] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [57973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3476), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3478), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58041] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3380), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58109] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + ACTIONS(3765), 1, + sym__newline_before_do, + STATE(2925), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2976), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2978), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [58183] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3472), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3474), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58251] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3464), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3466), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58319] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [58387] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3460), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3462), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58455] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [58523] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 52, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [58591] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3427), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3429), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [58659] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3767), 1, + anon_sym_LPAREN, + STATE(2128), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2970), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2972), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [58731] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(3769), 1, + sym__newline_before_do, + STATE(2691), 1, + sym_do_block, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2982), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [58805] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(3771), 1, + sym__newline_before_do, + STATE(2684), 1, + sym_do_block, + ACTIONS(2976), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2978), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [58879] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + aux_sym__terminator_token1, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3628), 1, + anon_sym_when, 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, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_EQ_GT, 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, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3626), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3540), 7, 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_COMMA, 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(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [58989] = 25, 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(3542), 1, + aux_sym__terminator_token1, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3628), 1, + anon_sym_when, 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, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3626), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3544), 7, anon_sym_SEMI, - 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_COMMA, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [198504] = 8, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [59099] = 27, ACTIONS(5), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_LF, - ACTIONS(6613), 1, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3779), 1, + anon_sym_COMMA, + ACTIONS(3785), 1, + anon_sym_when, + ACTIONS(3787), 1, + anon_sym_COLON_COLON, + ACTIONS(3789), 1, + anon_sym_EQ_GT, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + STATE(1865), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3292), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3783), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3294), 4, 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, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [59213] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(6543), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3439), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3441), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [59281] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3274), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 51, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [59351] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(6615), 1, - anon_sym_LF, - ACTIONS(6618), 1, + ACTIONS(3815), 1, + anon_sym_COMMA, + STATE(1887), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3414), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3416), 50, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [59423] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(6621), 5, + aux_sym__terminator_token1, + ACTIONS(3449), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3451), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [59495] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3819), 1, + anon_sym_COMMA, + STATE(1867), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3420), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3422), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [59567] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3822), 1, + anon_sym_COMMA, + STATE(1868), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3190), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3192), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [59639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3190), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3192), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [59707] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3817), 1, + anon_sym_COMMA, + STATE(1866), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3443), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3445), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [59779] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3606), 1, + anon_sym_LPAREN, + STATE(1628), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2970), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [59851] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3825), 1, + anon_sym_COMMA, + STATE(1880), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [59923] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3292), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3829), 1, + anon_sym_PIPE, + ACTIONS(3833), 1, + anon_sym_COMMA, + ACTIONS(3839), 1, + anon_sym_when, + ACTIONS(3841), 1, + anon_sym_COLON_COLON, + ACTIONS(3843), 1, + anon_sym_EQ_GT, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + STATE(1883), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3837), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3294), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_do, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [60037] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3435), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3437), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3431), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3433), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60173] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3410), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3412), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60241] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3402), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3404), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60309] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3398), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3400), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60377] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3292), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3294), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60445] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3825), 1, + anon_sym_COMMA, + STATE(1886), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [60517] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3394), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3396), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60585] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3390), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3392), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60653] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3867), 1, + anon_sym_COMMA, + STATE(1867), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3414), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3416), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60725] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3382), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3384), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60793] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3344), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [60861] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3869), 1, + anon_sym_COMMA, + STATE(1886), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [60933] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3872), 1, + anon_sym_COMMA, + STATE(1887), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3422), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [61005] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 41, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [198594] = 8, + [61085] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_LF, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61167] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 40, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61249] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3182), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3184), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [61317] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61405] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 25, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61497] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61591] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61687] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61787] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61889] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2172), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2976), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2978), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [61959] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2178), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2982), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [62029] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3630), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62135] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3628), 1, + anon_sym_when, + ACTIONS(3630), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [62243] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3178), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3180), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [62311] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3168), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [62379] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3628), 1, + anon_sym_when, + ACTIONS(3630), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [62487] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3250), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3252), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [62555] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3380), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62631] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62705] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 11, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62809] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 29, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62899] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 39, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [62983] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2179), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2976), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2978), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [63053] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2637), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [63120] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [63187] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3066), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3068), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [63254] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + STATE(1979), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [63325] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [63392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [63459] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + STATE(1915), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [63530] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2641), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2643), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [63597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2609), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2611), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [63664] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3877), 1, + anon_sym_LPAREN, + STATE(2638), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2970), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2972), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [63735] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2996), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2998), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [63802] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [63869] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 39, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + [63948] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [64029] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [64110] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [64177] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2651), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [64244] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2637), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2639), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [64311] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [64378] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [64445] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [64512] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [64579] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [64646] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_PIPE, + ACTIONS(3885), 1, + anon_sym_COMMA, + ACTIONS(3891), 1, + anon_sym_when, + ACTIONS(3893), 1, + anon_sym_COLON_COLON, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + STATE(2002), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3294), 2, + anon_sym_SEMI, + anon_sym_do, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3292), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [64759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [64826] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + ACTIONS(3923), 1, + sym__newline_before_do, + STATE(3149), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3042), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3044), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [64899] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + ACTIONS(3925), 1, + sym__newline_before_do, + STATE(3144), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2988), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2990), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [64972] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + ACTIONS(3927), 1, + sym__newline_before_do, + STATE(3143), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [65045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [65112] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [65179] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [65246] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [65313] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [65400] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 23, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [65491] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 18, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [65584] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [65679] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + [65778] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3843), 1, + anon_sym_EQ_GT, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + [65879] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3829), 1, + anon_sym_PIPE, + ACTIONS(3841), 1, + anon_sym_COLON_COLON, + ACTIONS(3843), 1, + anon_sym_EQ_GT, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [65984] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3829), 1, + anon_sym_PIPE, + ACTIONS(3839), 1, + anon_sym_when, + ACTIONS(3841), 1, + anon_sym_COLON_COLON, + ACTIONS(3843), 1, + anon_sym_EQ_GT, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66091] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3829), 1, + anon_sym_PIPE, + ACTIONS(3839), 1, + anon_sym_when, + ACTIONS(3841), 1, + anon_sym_COLON_COLON, + ACTIONS(3843), 1, + anon_sym_EQ_GT, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66198] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + [66273] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [66346] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3829), 1, + anon_sym_PIPE, + ACTIONS(3843), 1, + anon_sym_EQ_GT, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66449] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 27, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [66538] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + [66621] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3056), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [66690] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3542), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3829), 1, + anon_sym_PIPE, + ACTIONS(3839), 1, + anon_sym_when, + ACTIONS(3841), 1, + anon_sym_COLON_COLON, + ACTIONS(3843), 1, + anon_sym_EQ_GT, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3837), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3544), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66799] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [66866] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [66935] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2591), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2976), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2978), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67004] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67071] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67138] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67205] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2584), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2982), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67274] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67341] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67408] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67475] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67542] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67609] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67676] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [67743] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67810] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [67944] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68011] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68078] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3929), 1, + anon_sym_COMMA, + STATE(1979), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [68149] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [68216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [68283] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [68350] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [68417] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3422), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [68488] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3280), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3282), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68555] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3276), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3278), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3230), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3232), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3234), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3236), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [68756] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68823] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [68957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [69024] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [69091] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [69158] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [69225] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3487), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [69294] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3935), 1, + anon_sym_COMMA, + STATE(1984), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3414), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3416), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [69365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3280), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3282), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [69432] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3276), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3278), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [69499] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [69566] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3072), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3074), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [69633] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3937), 1, + anon_sym_COMMA, + STATE(2045), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3414), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3416), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [69704] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [69771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [69838] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3088), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3090), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [69905] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3628), 1, + anon_sym_when, + ACTIONS(3630), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(3939), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3626), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [70014] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3066), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3068), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70081] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3785), 1, + anon_sym_when, + ACTIONS(3787), 1, + anon_sym_COLON_COLON, + ACTIONS(3789), 1, + anon_sym_EQ_GT, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3783), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3422), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [70190] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70259] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70328] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_do, + ACTIONS(3943), 1, + sym__newline_before_do, + STATE(3090), 1, + sym_do_block, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2982), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [70401] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3054), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3056), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [70470] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3048), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3050), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [70539] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3945), 1, + anon_sym_COMMA, + STATE(2016), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70610] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [70677] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3945), 1, + anon_sym_COMMA, + STATE(2044), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70748] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [70815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3230), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3232), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [70882] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_do, + [70969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3234), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3236), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [71036] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_do, + ACTIONS(3947), 1, + sym__newline_before_do, + STATE(3080), 1, + sym_do_block, + ACTIONS(2976), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2978), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [71109] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3040), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [71176] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3012), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3014), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [71243] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3080), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3082), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [71310] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3076), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3078), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [71377] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3292), 1, + sym__newline_before_do, + ACTIONS(3951), 1, + anon_sym_PIPE, + ACTIONS(3955), 1, + anon_sym_COMMA, + ACTIONS(3961), 1, + anon_sym_when, + ACTIONS(3963), 1, + anon_sym_COLON_COLON, + ACTIONS(3965), 1, + anon_sym_EQ_GT, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + STATE(2083), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3959), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3294), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [71490] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(3993), 1, + sym__newline_before_do, + STATE(3168), 1, + sym_do_block, + ACTIONS(3042), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3044), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [71563] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(3995), 1, + sym__newline_before_do, + STATE(3184), 1, + sym_do_block, + ACTIONS(2988), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2990), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [71636] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71703] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71770] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71837] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71904] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [71971] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72038] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72172] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72239] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72306] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2641), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2643), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [72373] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2609), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [72440] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72574] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72641] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3997), 1, + anon_sym_COMMA, + STATE(2044), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72712] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4000), 1, + anon_sym_COMMA, + STATE(2045), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3422), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72783] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72850] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72917] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72984] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73051] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73118] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73185] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73252] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73319] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73386] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73453] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73520] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73587] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73654] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73721] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73788] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73855] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73922] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [73989] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74056] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74123] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74190] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2649), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [74257] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74324] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2637), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2639), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [74391] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74458] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3487), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74527] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + ACTIONS(4003), 1, + sym__newline_before_do, + STATE(3183), 1, + sym_do_block, + ACTIONS(3060), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3062), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [74600] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3785), 1, + anon_sym_when, + ACTIONS(3787), 1, + anon_sym_COLON_COLON, + ACTIONS(3789), 1, + anon_sym_EQ_GT, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3538), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3783), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3540), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [74709] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4005), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [74780] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3084), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3086), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [74847] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4010), 1, + anon_sym_PIPE, + ACTIONS(4014), 1, + anon_sym_COMMA, + ACTIONS(4020), 1, + anon_sym_when, + ACTIONS(4022), 1, + anon_sym_COLON_COLON, + ACTIONS(4024), 1, + anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + STATE(1997), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3292), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4018), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3294), 3, + anon_sym_SEMI, + anon_sym_do, + anon_sym_end, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [74960] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [75031] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 39, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_do, + [75110] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_do, + [75191] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_do, + [75272] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3254), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3256), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [75339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3072), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3074), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [75406] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4050), 1, + anon_sym_COMMA, + STATE(2202), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3414), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3416), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [75477] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_do, + [75560] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 23, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_do, + [75651] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3246), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3248), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [75718] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_do, + [75811] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_do, + [75906] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_do, + [76005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3242), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3244), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [76072] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3238), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3240), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [76139] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3789), 1, + anon_sym_EQ_GT, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_do, + [76240] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3787), 1, + anon_sym_COLON_COLON, + ACTIONS(3789), 1, + anon_sym_EQ_GT, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [76345] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3785), 1, + anon_sym_when, + ACTIONS(3787), 1, + anon_sym_COLON_COLON, + ACTIONS(3789), 1, + anon_sym_EQ_GT, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [76452] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3420), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3829), 1, + anon_sym_PIPE, + ACTIONS(3839), 1, + anon_sym_when, + ACTIONS(3841), 1, + anon_sym_COLON_COLON, + ACTIONS(3843), 1, + anon_sym_EQ_GT, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3837), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3422), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [76561] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3214), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3216), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [76628] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3210), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3212), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [76695] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [76762] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [76829] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3206), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3208), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [76896] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3174), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3176), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [76963] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3162), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3164), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [77030] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3158), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3160), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [77097] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3154), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3156), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [77164] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3150), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3152), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [77231] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3146), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3148), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [77298] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3785), 1, + anon_sym_when, + ACTIONS(3787), 1, + anon_sym_COLON_COLON, + ACTIONS(3789), 1, + anon_sym_EQ_GT, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [77405] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_do, + [77480] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [77553] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3789), 1, + anon_sym_EQ_GT, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [77656] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + anon_sym_do, + [77745] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3142), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3144), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [77812] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3138), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3140), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [77879] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4052), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [77950] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [78021] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [78092] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3336), 1, + anon_sym_LBRACK2, + ACTIONS(3775), 1, + anon_sym_PIPE, + ACTIONS(3785), 1, + anon_sym_when, + ACTIONS(3787), 1, + anon_sym_COLON_COLON, + ACTIONS(3789), 1, + anon_sym_EQ_GT, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3801), 1, + anon_sym_in, + ACTIONS(3803), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3805), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3809), 1, + anon_sym_STAR_STAR, + ACTIONS(3811), 1, + anon_sym_DOT, + ACTIONS(3813), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3542), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3777), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3781), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3783), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3793), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3795), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3773), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3544), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3797), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3807), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3799), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [78201] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4052), 1, + anon_sym_COMMA, + STATE(2114), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [78272] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3136), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [78339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3018), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3020), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [78406] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3088), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3090), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78473] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3024), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [78540] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3026), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3028), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [78607] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3130), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3132), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [78674] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3126), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3128), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [78741] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2375), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3042), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3044), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78810] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [78877] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2367), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2988), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2990), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [78946] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79013] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2366), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3060), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3062), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [79082] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3116), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79149] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3094), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3096), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [79216] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3110), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3112), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79283] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79350] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3102), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3104), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79417] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3266), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3268), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79484] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3258), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3260), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3226), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3228), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3198), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3200), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3186), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3188), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [79752] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4054), 1, + anon_sym_COMMA, + STATE(2151), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3443), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3445), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [79823] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 6, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [79890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 6, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [79957] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4058), 1, + anon_sym_PIPE, + ACTIONS(4062), 1, + anon_sym_COMMA, + ACTIONS(4068), 1, + anon_sym_when, 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, + anon_sym_COLON_COLON, + ACTIONS(4072), 1, + anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + STATE(2177), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1822), 5, + ACTIONS(3292), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3294), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_do, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [80070] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2364), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3042), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3044), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80139] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2361), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2988), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2990), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [80275] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3480), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3482), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [80342] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3288), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3290), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [80409] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80476] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4054), 1, + anon_sym_COMMA, + STATE(2201), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3449), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3451), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [80547] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(3829), 1, + anon_sym_PIPE, + ACTIONS(3839), 1, + anon_sym_when, + ACTIONS(3841), 1, + anon_sym_COLON_COLON, + ACTIONS(3843), 1, + anon_sym_EQ_GT, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3855), 1, + anon_sym_in, + ACTIONS(3857), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3859), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3863), 1, + anon_sym_STAR_STAR, + ACTIONS(3865), 1, + sym__not_in, + ACTIONS(3831), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3835), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3837), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3847), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3849), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3827), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3540), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3851), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3861), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3853), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [80656] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 6, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80723] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 6, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80790] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4098), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [80859] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3342), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [80926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3254), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3256), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [80993] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3246), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3248), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81060] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3242), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3244), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81127] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3238), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3240), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81194] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3214), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3216), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3210), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3212), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3206), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3208), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81395] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3174), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3176), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81462] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3162), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3164), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81529] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3158), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3160), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81596] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3154), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3156), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81663] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3150), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3152), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3146), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3148), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81797] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3142), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3144), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81864] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3034), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3036), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [81998] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3138), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3140), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [82065] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [82132] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2350), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82201] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82268] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4100), 1, + anon_sym_COMMA, + STATE(2241), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3414), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3416), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3030), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3032), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [82406] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3034), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3036), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [82473] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2996), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2998), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [82540] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3130), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3132), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [82607] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3126), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3128), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [82674] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [82741] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [82808] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3116), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [82875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2637), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [82942] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [83009] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3110), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3112), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83076] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83143] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3102), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3104), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83210] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3266), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3268), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3258), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3260), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83344] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3226), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3228), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83411] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3198), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3200), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83478] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3186), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3188), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83545] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3480), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3482), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83612] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3288), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3290), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83679] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3340), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 51, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83746] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [83813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3030), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3032), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [83880] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4102), 1, + anon_sym_COMMA, + STATE(2201), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3190), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3192), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [83951] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4105), 1, + anon_sym_COMMA, + STATE(2202), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3420), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3422), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [84022] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3026), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3028), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [84156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3022), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3024), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [84223] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84290] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84357] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84424] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3018), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3020), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [84491] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84558] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84625] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3094), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3096), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [84692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84759] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84826] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4108), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3270), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3272), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [84895] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [84962] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85029] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2609), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [85096] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2641), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [85163] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2641), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [85230] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2609), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [85297] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 51, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + anon_sym_end, + [85364] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3030), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3032), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [85431] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4110), 1, + aux_sym_sigil_token3, + ACTIONS(3270), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3272), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [85500] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85567] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85634] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85701] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85768] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85835] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3084), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3086), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [85902] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [85969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3076), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3078), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [86036] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3080), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3082), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [86103] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3012), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3014), 51, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [86170] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86237] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3022), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3024), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86304] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3066), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3068), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [86371] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86438] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86505] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86572] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4112), 1, + anon_sym_COMMA, + STATE(2241), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3422), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86643] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86710] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3034), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3036), 52, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [86777] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86844] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [86911] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3620), 1, + anon_sym_PIPE, + ACTIONS(3628), 1, + anon_sym_when, + ACTIONS(3630), 1, + anon_sym_COLON_COLON, + ACTIONS(3632), 1, + anon_sym_EQ_GT, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(3644), 1, + anon_sym_in, + ACTIONS(3646), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3648), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3652), 1, + anon_sym_STAR_STAR, + ACTIONS(3654), 1, + anon_sym_DOT, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3660), 1, + sym__not_in, + ACTIONS(4115), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3622), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3624), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3626), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3636), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3638), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3618), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3640), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3650), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4117), 6, + anon_sym_SEMI, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [198624] = 8, + ACTIONS(3642), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [87020] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4344), 1, - anon_sym_LF, - ACTIONS(4347), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 50, anon_sym_SEMI, - STATE(404), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87087] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87154] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87288] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3080), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3082), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87422] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3076), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3078), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87489] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87556] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3084), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3086), 50, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87690] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87757] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [87824] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87891] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [87958] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88025] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88092] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88159] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [88225] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3168), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [88291] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3230), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3232), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [88357] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [88427] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3234), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3236), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [88493] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88559] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3464), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3466), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [88625] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3250), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3252), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88691] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88757] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3474), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [88823] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3178), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3180), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [88889] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3476), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3478), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [88955] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1321), 1, + anon_sym_end, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4119), 1, + aux_sym__terminator_token1, + ACTIONS(4122), 1, + anon_sym_SEMI, + ACTIONS(4127), 1, + anon_sym_PIPE, + ACTIONS(4135), 1, + anon_sym_when, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + STATE(348), 1, sym__terminator, - STATE(1310), 1, + STATE(1031), 1, aux_sym__terminator_repeat1, - STATE(4138), 1, + STATE(4218), 1, aux_sym_source_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4133), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [89071] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2996), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2998), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89137] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3420), 1, + sym__newline_before_do, + ACTIONS(3951), 1, + anon_sym_PIPE, + ACTIONS(3961), 1, + anon_sym_when, + ACTIONS(3963), 1, + anon_sym_COLON_COLON, + ACTIONS(3965), 1, + anon_sym_EQ_GT, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3959), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3422), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [89245] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3098), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3100), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [89311] = 4, 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_binary_operator, 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(3344), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3346), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89377] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_LF, - ACTIONS(4096), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3382), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3384), 49, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89443] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 50, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [89513] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3390), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3392), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89579] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [89645] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3394), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3396), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89711] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [89777] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [89843] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3398), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3400), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89909] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3402), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3404), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [89975] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3410), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3412), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [90041] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [90107] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [90173] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3250), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3252), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [90239] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3439), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3441), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [90305] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3178), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3180), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [90371] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3374), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3376), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [90437] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [90507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3370), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3372), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [90573] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3366), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3368), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [90639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3362), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3364), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [90705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3358), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3360), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [90771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3280), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3282), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [90837] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3276), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3278), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [90903] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3276), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3278), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [90969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3280), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3282), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [91035] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3262), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3264), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [91101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [91167] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 50, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [91237] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [91303] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [91369] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3439), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3441), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [91435] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + anon_sym_do, + [91517] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 26, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + anon_sym_do, + [91605] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3951), 1, + anon_sym_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ_GT, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [91707] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3344), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [91773] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [91845] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 46, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + anon_sym_do, + [91919] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3951), 1, + anon_sym_PIPE, + ACTIONS(3961), 1, + anon_sym_when, + ACTIONS(3963), 1, + anon_sym_COLON_COLON, + ACTIONS(3965), 1, + anon_sym_EQ_GT, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92025] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3951), 1, + anon_sym_PIPE, + ACTIONS(3961), 1, + anon_sym_when, + ACTIONS(3963), 1, + anon_sym_COLON_COLON, + ACTIONS(3965), 1, + anon_sym_EQ_GT, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92131] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3382), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3384), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [92197] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3951), 1, + anon_sym_PIPE, + ACTIONS(3963), 1, + anon_sym_COLON_COLON, + ACTIONS(3965), 1, + anon_sym_EQ_GT, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92301] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3965), 1, + anon_sym_EQ_GT, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92401] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_do, + [92499] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 14, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + anon_sym_do, + [92593] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 17, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_do, + [92685] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 22, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + anon_sym_do, + [92775] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + anon_sym_do, + [92861] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_do, + [92941] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + anon_sym_do, + [93021] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + anon_sym_do, + [93099] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [93169] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3390), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3392), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93235] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3060), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3062), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [93301] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3394), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3396), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93367] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3398), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3400), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93433] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3402), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3404), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93499] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3460), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3462), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [93565] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3410), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3412), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93631] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3190), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3192), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93697] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3460), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3462), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [93763] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3431), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3433), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93829] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3435), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3437), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [93895] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_PIPE, + ACTIONS(3891), 1, + anon_sym_when, + ACTIONS(3893), 1, + anon_sym_COLON_COLON, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3420), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3422), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [94003] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3468), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3470), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94135] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 50, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [94205] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94271] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94337] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3194), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3196), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94403] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3464), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3466), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94469] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3218), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3220), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94535] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3224), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94601] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3230), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3232), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94667] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3234), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3236), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94733] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3439), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3441), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [94799] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3284), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3286), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94865] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2970), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3350), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3352), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [94997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3048), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3050), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [95063] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3054), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3056), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [95129] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3472), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3474), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95195] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3170), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3172), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [95261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95327] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3476), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3478), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [95393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3460), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3462), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [95459] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3464), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3466), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [95525] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3472), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3474), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [95591] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3406), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3408), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [95657] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [95727] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + [95805] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [95885] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [95965] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 34, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [96051] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3380), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [96117] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3476), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3478), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [96183] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3098), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3100), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [96249] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [96319] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96385] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96451] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96517] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96583] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96649] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96715] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96781] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [96979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3380), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [97045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [97111] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [97201] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [97293] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [97387] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [97485] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [97585] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_PIPE, + ACTIONS(3893), 1, + anon_sym_COLON_COLON, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [97689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [97755] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_PIPE, + ACTIONS(3891), 1, + anon_sym_when, + ACTIONS(3893), 1, + anon_sym_COLON_COLON, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [97861] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_PIPE, + ACTIONS(3891), 1, + anon_sym_when, + ACTIONS(3893), 1, + anon_sym_COLON_COLON, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [97967] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3380), 45, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + [98041] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [98113] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [98179] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_PIPE, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [98281] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 25, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [98369] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + [98451] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [98517] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3374), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3376), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [98583] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3370), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3372), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [98649] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [98715] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [98781] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3366), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3368), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [98847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [98913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3362), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3364), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [98979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3358), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3360), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99111] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99177] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [99243] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3380), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [99309] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [99375] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [99441] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3262), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3264), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99573] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3204), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [99643] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99709] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [99841] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [99907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3374), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3376), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [99973] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3370), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3372), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [100039] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3366), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3368), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [100105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [100171] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100237] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [100303] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [100369] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3362), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3364), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [100435] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3358), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3360), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [100501] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100567] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3388), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [100637] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100703] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_PIPE, + ACTIONS(3891), 1, + anon_sym_when, + ACTIONS(3893), 1, + anon_sym_COLON_COLON, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3542), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3544), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [100811] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3194), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3196), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [100943] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3218), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3220), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101009] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3222), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3224), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101075] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101141] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101207] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [101273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [101339] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2641), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101405] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3284), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3286), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101471] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2970), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101537] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3350), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3352), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101603] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101669] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2609), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101735] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101801] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3170), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3172), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101867] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3406), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3408), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [101933] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [101999] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [102065] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4058), 1, + anon_sym_PIPE, + ACTIONS(4068), 1, + anon_sym_when, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + ACTIONS(4072), 1, + anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3542), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3544), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [102173] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym__terminator_token1, + ACTIONS(1651), 1, + ts_builtin_sym_end, + ACTIONS(4169), 1, + anon_sym_SEMI, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4181), 1, + anon_sym_when, + ACTIONS(4183), 1, + anon_sym_COLON_COLON, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, STATE(409), 1, sym__terminator, - STATE(1309), 1, + STATE(1028), 1, aux_sym__terminator_repeat1, - STATE(4147), 1, - aux_sym_do_block_repeat2, + STATE(4241), 1, + aux_sym_source_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [102289] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(6543), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3262), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3264), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [102355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3204), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [102421] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3202), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [102491] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3204), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [102557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3204), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [102623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3060), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3062), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [102689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 51, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [102755] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(6623), 1, - anon_sym_LF, - ACTIONS(6626), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3468), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3470), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [102821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 51, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [102887] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(6543), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 51, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [102953] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(6543), 1, + ACTIONS(3435), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3437), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [103019] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3431), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3433), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [103085] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3410), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3412), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [103151] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3402), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3404), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [103217] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3398), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3400), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [103283] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 51, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [103349] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(6543), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 51, 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, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [103415] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_LF, + ACTIONS(3394), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3396), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [103481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3390), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3392), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [103547] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3182), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3184), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [103613] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3656), 1, + anon_sym_end, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4127), 1, + anon_sym_PIPE, + ACTIONS(4135), 1, + anon_sym_when, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(4213), 1, + aux_sym__terminator_token1, + ACTIONS(4216), 1, + anon_sym_SEMI, + STATE(345), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4188), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4133), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [103729] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3056), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103797] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3382), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3384), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [103863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3346), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [103929] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [103997] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + sym__newline_before_do, + ACTIONS(3951), 1, + anon_sym_PIPE, + ACTIONS(3961), 1, + anon_sym_when, + ACTIONS(3963), 1, + anon_sym_COLON_COLON, + ACTIONS(3965), 1, + anon_sym_EQ_GT, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3959), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3540), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [104105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3066), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3068), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [104171] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3388), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [104237] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3386), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_do, + [104307] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3388), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [104373] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3542), 1, + sym__newline_before_do, + ACTIONS(3951), 1, + anon_sym_PIPE, + ACTIONS(3961), 1, + anon_sym_when, + ACTIONS(3963), 1, + anon_sym_COLON_COLON, + ACTIONS(3965), 1, + anon_sym_EQ_GT, + ACTIONS(3967), 1, + anon_sym_EQ, + ACTIONS(3977), 1, + anon_sym_in, + ACTIONS(3979), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3981), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3985), 1, + anon_sym_STAR_STAR, + ACTIONS(3987), 1, + anon_sym_DOT, + ACTIONS(3989), 1, + anon_sym_LBRACK2, + ACTIONS(3991), 1, + sym__not_in, + ACTIONS(3953), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3957), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3959), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3969), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3971), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3544), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3949), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3973), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3983), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3975), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [104481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3388), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [104547] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3194), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3196), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [104613] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [104679] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [104745] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3218), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3220), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [104811] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3224), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [104877] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [104943] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [105009] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105075] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4219), 1, + anon_sym_COMMA, + STATE(2501), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3420), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3422), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105145] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2637), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105211] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4222), 1, + anon_sym_COMMA, + STATE(2503), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3190), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3192), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [105281] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3453), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3455), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [105347] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3284), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3286), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [105413] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2970), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2972), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [105479] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3350), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3352), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [105545] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [105611] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3056), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [105677] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3170), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3172), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [105743] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4010), 1, + anon_sym_PIPE, + ACTIONS(4020), 1, + anon_sym_when, + ACTIONS(4022), 1, + anon_sym_COLON_COLON, + ACTIONS(4024), 1, + anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4018), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3422), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [105851] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3178), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3180), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105917] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3168), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [105983] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3406), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3408), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [106049] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4058), 1, + anon_sym_PIPE, + ACTIONS(4068), 1, + anon_sym_when, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + ACTIONS(4072), 1, + anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3420), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3422), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [106157] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4225), 1, + anon_sym_COMMA, + STATE(2503), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3449), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3451), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [106227] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [106293] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [106359] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3250), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3252), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [106425] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3012), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3014), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [106491] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3080), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3082), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [106557] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + [106639] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [106727] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4058), 1, + anon_sym_PIPE, + ACTIONS(4072), 1, + anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [106829] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [106901] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 46, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + [106975] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4058), 1, + anon_sym_PIPE, + ACTIONS(4068), 1, + anon_sym_when, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + ACTIONS(4072), 1, + anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [107081] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4058), 1, + anon_sym_PIPE, + ACTIONS(4068), 1, + anon_sym_when, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + ACTIONS(4072), 1, + anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [107187] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4058), 1, + anon_sym_PIPE, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + ACTIONS(4072), 1, + anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [107291] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4072), 1, + anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [107391] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + [107489] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [107583] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [107675] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [107765] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [107851] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [107931] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [108011] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + [108089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3076), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3078), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108155] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3084), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3086), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3254), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3256), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108287] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3246), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3248), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108353] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3242), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3244), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108419] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3238), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3240), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108485] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3214), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3216), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3210), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3212), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108617] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3206), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3208), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108683] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3174), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3176), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108749] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3162), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3164), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3158), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3160), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108881] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3154), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3156), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [108947] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3150), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3152), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3146), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3148), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3142), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3144), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109145] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3138), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3140), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109211] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3134), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3136), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [109343] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3018), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3020), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109409] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [109475] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3022), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3024), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109541] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3026), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3028), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109607] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109673] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3130), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3132), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109739] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3126), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3128), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109805] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3122), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3124), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3118), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3120), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [109937] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3114), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3116), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110003] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3110), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3112), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3106), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110135] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3102), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3104), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110201] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3266), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3268), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110267] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3258), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3260), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3292), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3294), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [110399] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3550), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [110467] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3226), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3228), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110533] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3198), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3200), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110599] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3186), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3188), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110665] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3453), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3455), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110731] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3480), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3482), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110797] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3288), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3290), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3340), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [110929] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4227), 1, + anon_sym_COMMA, + STATE(2582), 1, + aux_sym_keywords_repeat1, + ACTIONS(3190), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3192), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [110999] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3190), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3192), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111065] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3030), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3032), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [111131] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_do, + ACTIONS(4230), 1, + sym__newline_before_do, + STATE(3283), 1, + sym_do_block, + ACTIONS(3042), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3044), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111203] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_do, + ACTIONS(4232), 1, + sym__newline_before_do, + STATE(3303), 1, + sym_do_block, + ACTIONS(2988), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2990), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111275] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3453), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3455), 51, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111341] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_do, + ACTIONS(4234), 1, + sym__newline_before_do, + STATE(3311), 1, + sym_do_block, + ACTIONS(3060), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3062), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [111413] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4225), 1, + anon_sym_COMMA, + STATE(2516), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3443), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3445), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [111483] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3427), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3429), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [111549] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3034), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3036), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [111615] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3881), 1, + anon_sym_PIPE, + ACTIONS(3891), 1, + anon_sym_when, + ACTIONS(3893), 1, + anon_sym_COLON_COLON, + ACTIONS(3895), 1, + anon_sym_EQ_GT, + ACTIONS(3897), 1, + anon_sym_EQ, + ACTIONS(3907), 1, + anon_sym_in, + ACTIONS(3909), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3911), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3915), 1, + anon_sym_STAR_STAR, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_LBRACK2, + ACTIONS(3921), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3883), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3887), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3889), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3538), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3540), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3899), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3901), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3879), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3903), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3913), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3905), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [111723] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3072), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3074), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [111789] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3767), 1, + anon_sym_LPAREN, + STATE(2028), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2970), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [111859] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4236), 1, + anon_sym_COMMA, + STATE(2501), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3414), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3416), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [111929] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3038), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3040), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [111995] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3182), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3184), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [112061] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3292), 1, + sym__newline_before_do, + ACTIONS(4240), 1, + anon_sym_PIPE, + ACTIONS(4244), 1, + anon_sym_COMMA, + ACTIONS(4250), 1, + anon_sym_when, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + STATE(2595), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3294), 2, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4248), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [112173] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1321), 1, + anon_sym_RPAREN, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4282), 1, + aux_sym__terminator_token1, + ACTIONS(4285), 1, + anon_sym_SEMI, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4298), 1, + anon_sym_when, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + STATE(349), 1, + sym__terminator, + STATE(1033), 1, + aux_sym__terminator_repeat1, + STATE(4206), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4296), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [112289] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4010), 1, + anon_sym_PIPE, + ACTIONS(4020), 1, + anon_sym_when, + ACTIONS(4022), 1, + anon_sym_COLON_COLON, + ACTIONS(4024), 1, + anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3538), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4018), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3540), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [112397] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4010), 1, + anon_sym_PIPE, + ACTIONS(4020), 1, + anon_sym_when, + ACTIONS(4022), 1, + anon_sym_COLON_COLON, + ACTIONS(4024), 1, + anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3542), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4018), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3544), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [112505] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3088), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3090), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [112571] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3292), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4334), 1, + anon_sym_COMMA, + ACTIONS(4340), 1, + anon_sym_when, + ACTIONS(4342), 1, + anon_sym_COLON_COLON, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + STATE(2604), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3294), 2, + anon_sym_LBRACE, + anon_sym_do, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4338), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [112683] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_COMMA, + STATE(2605), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3414), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3416), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [112753] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4370), 1, + anon_sym_COMMA, + STATE(2605), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3420), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3422), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [112823] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3234), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3236), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [112889] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + anon_sym_end, + [112971] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 26, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + anon_sym_end, + [113059] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4010), 1, + anon_sym_PIPE, + ACTIONS(4024), 1, + anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + anon_sym_end, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113161] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + anon_sym_end, + [113233] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 46, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + anon_sym_end, + [113307] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4010), 1, + anon_sym_PIPE, + ACTIONS(4020), 1, + anon_sym_when, + ACTIONS(4022), 1, + anon_sym_COLON_COLON, + ACTIONS(4024), 1, + anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113413] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4010), 1, + anon_sym_PIPE, + ACTIONS(4020), 1, + anon_sym_when, + ACTIONS(4022), 1, + anon_sym_COLON_COLON, + ACTIONS(4024), 1, + anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113519] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4010), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_COLON_COLON, + ACTIONS(4024), 1, + anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + anon_sym_end, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113623] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4024), 1, + anon_sym_EQ_GT, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + anon_sym_end, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113723] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4026), 1, + anon_sym_EQ, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4028), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + anon_sym_end, + [113821] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4030), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + anon_sym_end, + [113915] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4032), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + anon_sym_end, + [114007] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4008), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4034), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + anon_sym_end, + [114097] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4036), 1, + anon_sym_in, + ACTIONS(4038), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(4048), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + anon_sym_end, + [114183] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + anon_sym_end, + [114263] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4040), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + anon_sym_end, + [114343] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4044), 1, + anon_sym_STAR_STAR, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4012), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4016), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4042), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + anon_sym_end, + [114421] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3230), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3232), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [114487] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3276), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3278), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [114553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3280), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3282), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [114619] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4373), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3270), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3272), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [114687] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + anon_sym_end, + [114757] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + anon_sym_end, + [114827] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4046), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + anon_sym_end, + [114897] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + anon_sym_LBRACK2, + ACTIONS(4058), 1, + anon_sym_PIPE, + ACTIONS(4068), 1, + anon_sym_when, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + ACTIONS(4072), 1, + anon_sym_EQ_GT, + ACTIONS(4074), 1, + anon_sym_EQ, + ACTIONS(4084), 1, + anon_sym_in, + ACTIONS(4086), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4088), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4092), 1, + anon_sym_STAR_STAR, + ACTIONS(4094), 1, + anon_sym_DOT, + ACTIONS(4096), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3538), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4060), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4064), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4076), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4078), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4056), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4080), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4090), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4082), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [115005] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4375), 1, + anon_sym_COMMA, + STATE(2582), 1, + aux_sym_keywords_repeat1, + ACTIONS(3449), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3451), 49, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [115075] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3656), 1, + anon_sym_RPAREN, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4298), 1, + anon_sym_when, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(4377), 1, + aux_sym__terminator_token1, + ACTIONS(4380), 1, + anon_sym_SEMI, + STATE(347), 1, + sym__terminator, + STATE(1033), 1, + aux_sym__terminator_repeat1, + STATE(4186), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4296), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [115191] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2637), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2639), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115257] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2651), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115323] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3094), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3096), 50, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115389] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2871), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3060), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3062), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115457] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2872), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2988), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2990), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115525] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2840), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3042), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3044), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115593] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4383), 1, + anon_sym_COMMA, + STATE(2652), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [115663] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2609), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2611), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115729] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2641), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2643), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115795] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3292), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3294), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [115861] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym__terminator_token1, + ACTIONS(1693), 1, + ts_builtin_sym_end, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4181), 1, + anon_sym_when, + ACTIONS(4183), 1, + anon_sym_COLON_COLON, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(4385), 1, anon_sym_SEMI, STATE(414), 1, sym__terminator, - STATE(1309), 1, + STATE(1028), 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, + STATE(4203), 1, aux_sym_source_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, - anon_sym_CARET, - anon_sym_TILDE_TILDE_TILDE, - anon_sym_not, - [199337] = 5, + ACTIONS(4179), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [115977] = 6, 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(3761), 1, + anon_sym_LPAREN, + STATE(1938), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3377), 7, + ACTIONS(2970), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 48, anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [116047] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4387), 1, + anon_sym_COMMA, + STATE(2649), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3443), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3445), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [116117] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4375), 1, + anon_sym_COMMA, + STATE(2632), 1, + aux_sym_keywords_repeat1, + ACTIONS(3443), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3445), 49, 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [116187] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3427), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3429), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [116253] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4387), 1, + anon_sym_COMMA, + STATE(2650), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3449), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3451), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [116323] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4389), 1, + anon_sym_COMMA, + STATE(2650), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3190), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3192), 48, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [116393] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4392), 1, + anon_sym_COMMA, + STATE(2651), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [116463] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4383), 1, + anon_sym_COMMA, + STATE(2651), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [116533] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [116598] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + [116679] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3182), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3184), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, anon_sym_GT_GT, - [200041] = 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [116744] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3383), 1, - anon_sym_LF, - ACTIONS(3), 2, - sym__newline_before_binary_op, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3381), 7, + aux_sym__terminator_token1, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + [116821] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [116900] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [116979] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 34, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [117064] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 21, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [117153] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 16, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [117244] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [117337] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2637), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [117402] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [117467] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [117564] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [117663] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, + anon_sym_COLON_COLON, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [117766] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4340), 1, + anon_sym_when, + ACTIONS(4342), 1, + anon_sym_COLON_COLON, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [117871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3292), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3294), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [117936] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4340), 1, + anon_sym_when, + ACTIONS(4342), 1, + anon_sym_COLON_COLON, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [118041] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3048), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3050), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [118108] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3054), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3056), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [118175] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 45, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + [118248] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3877), 1, + anon_sym_LPAREN, + STATE(2586), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2970), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [118317] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [118388] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [118489] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 25, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [118576] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3198), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3200), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [118641] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3094), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3096), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [118706] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2609), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [118771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2641), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [118836] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4395), 1, + aux_sym_sigil_token3, + ACTIONS(3270), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3272), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [118903] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3040), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [118968] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3034), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3036), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119033] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3427), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3429), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [119098] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3190), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3192), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [119163] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3342), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119228] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3288), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3290), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119293] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3480), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3482), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3186), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3188), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119423] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3030), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3032), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119488] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3226), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3228), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3258), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3260), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3266), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3268), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119683] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3102), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3104), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119748] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3110), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3112), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119878] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3116), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [119943] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120008] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120073] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3126), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3128), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120138] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3130), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3132), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120203] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3026), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3028), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120268] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3024), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3018), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3020), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120398] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3136), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120463] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3138), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3140), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120528] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3142), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3144), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120593] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3146), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3148), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120658] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3150), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3152), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120723] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3154), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3156), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120788] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3158), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3160), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120853] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3162), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3164), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120918] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3174), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3176), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [120983] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3206), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3208), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121048] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3210), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3212), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121113] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3214), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3216), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121178] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3238), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3240), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121243] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3242), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3244), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121308] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3246), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3248), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121373] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3254), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3256), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121438] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3084), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3086), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121503] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3076), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3078), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121568] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3080), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3082), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121633] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3012), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3014), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121698] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4397), 1, + anon_sym_COMMA, + STATE(2726), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [121767] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4400), 1, + anon_sym_COMMA, + STATE(2726), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [121836] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4402), 1, + anon_sym_COMMA, + STATE(2730), 1, + aux_sym_keywords_repeat1, + ACTIONS(3449), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3451), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [121905] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4400), 1, + anon_sym_COMMA, + STATE(2727), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [121974] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_COMMA, + STATE(2730), 1, + aux_sym_keywords_repeat1, + ACTIONS(3190), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3192), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [122043] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3420), 1, + sym__newline_before_do, + ACTIONS(4240), 1, + anon_sym_PIPE, + ACTIONS(4250), 1, + anon_sym_when, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4248), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3422), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [122150] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [122215] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4402), 1, + anon_sym_COMMA, + STATE(2728), 1, + aux_sym_keywords_repeat1, + ACTIONS(3443), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3445), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [122284] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4407), 1, + anon_sym_COMMA, + STATE(2738), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [122353] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + sym__newline_before_do, + ACTIONS(4240), 1, + anon_sym_PIPE, + ACTIONS(4250), 1, + anon_sym_when, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4248), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3540), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [122460] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3682), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [122527] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [122628] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4443), 1, + anon_sym_COMMA, + STATE(2738), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [122697] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4407), 1, + anon_sym_COMMA, + STATE(2734), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [122766] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [122843] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [122922] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [123001] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [123084] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 22, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [123171] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [123260] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 14, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [123351] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + [123446] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [123511] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [123608] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3234), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3236), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [123673] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3230), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3232), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [123738] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [123803] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [123868] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [123971] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [124074] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 46, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [124147] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [124218] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [124283] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [124382] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 26, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [124467] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [124548] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [124613] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [124678] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [124743] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [124808] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [124873] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [124938] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125003] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125068] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125133] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125198] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3276), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3278), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [125263] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3280), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3282), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [125328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125523] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125588] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125653] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125718] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125783] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [125848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [125978] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126043] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3544), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [126148] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126213] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126278] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126343] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126408] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126473] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126538] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126603] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126668] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3170), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3172), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [126733] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126798] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126928] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [126993] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127058] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127123] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3394), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3396), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [127188] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127253] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127318] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127383] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127448] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127513] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127578] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [127647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127712] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127777] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127842] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [127972] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128037] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128167] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3066), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3068), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128232] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128297] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128362] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128427] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3682), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [128494] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3280), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3282), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [128559] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3276), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3278), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [128624] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3538), 1, + aux_sym__terminator_token1, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(4450), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3540), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [128731] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128796] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128861] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [128991] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [129056] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [129121] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3230), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3232), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129186] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3234), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3236), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129251] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3250), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3252), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129316] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3166), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3168), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129381] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3178), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3180), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129446] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3344), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3346), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129511] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3382), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3384), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129576] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3390), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3392), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129641] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3066), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3068), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [129706] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3476), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3478), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [129771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [129836] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [129905] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + [129982] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [130061] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [130140] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + [130225] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 22, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + [130314] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 17, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + [130405] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + [130498] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [130595] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [130694] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [130797] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(4450), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [130902] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3398), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3400), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [130967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3402), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3404), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131032] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3410), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3412), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131097] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3431), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3433), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131162] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(4450), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131267] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3380), 46, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + [131340] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + [131411] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131512] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 26, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + [131599] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + [131680] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3435), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3437), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131745] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3540), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131850] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3439), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3441), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [131915] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3246), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3248), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [131980] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 49, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [132049] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LBRACK2, + ACTIONS(3542), 1, + aux_sym__terminator_token1, + ACTIONS(3560), 1, + anon_sym_PIPE, + ACTIONS(3573), 1, + anon_sym_COLON_COLON, + ACTIONS(3575), 1, + anon_sym_EQ_GT, + ACTIONS(3577), 1, + anon_sym_EQ, + ACTIONS(3587), 1, + anon_sym_in, + ACTIONS(3589), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3591), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3595), 1, + anon_sym_STAR_STAR, + ACTIONS(3597), 1, + anon_sym_DOT, + ACTIONS(3599), 1, + sym__not_in, + ACTIONS(4450), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3562), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3568), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3581), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3544), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3558), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3583), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3593), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3585), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [132156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3460), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3462), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [132221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3464), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3466), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [132286] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3472), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3474), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [132351] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2996), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2998), 50, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [132416] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3012), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3080), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3082), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132546] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3076), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3078), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132611] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3380), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [132676] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3084), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3086), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132741] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3254), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3256), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132806] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3206), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3208), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3242), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3244), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [132936] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3238), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3240), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133001] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3214), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3216), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133066] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3210), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3212), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133131] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3422), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [133236] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3174), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3176), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133301] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3162), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3164), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133366] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3158), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3160), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3154), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3156), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133496] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3150), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3152), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133561] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3146), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3148), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133626] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3142), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3144), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133691] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3138), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3140), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133756] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3134), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3136), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3018), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3020), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [133886] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3406), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3408), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [133951] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3022), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3024), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134016] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3098), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3100), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [134081] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [134150] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3026), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3028), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134215] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3130), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3132), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134280] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3126), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3128), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134345] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3122), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3124), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134410] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3118), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3120), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134475] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3114), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3116), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134540] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3110), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3112), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134605] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3106), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3108), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134670] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3102), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3104), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134735] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3266), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3268), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134800] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3258), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3260), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134865] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3226), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3228), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134930] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [134995] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135060] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3198), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3200), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135125] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3186), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3188), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135190] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135255] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135320] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3480), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3482), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135385] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3288), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3290), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135450] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3340), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3342), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135515] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 5, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135580] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_do, + [135657] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3030), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3032), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135722] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [135801] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3034), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3036), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [135866] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_do, + [135945] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_do, + [136030] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3038), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3040), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [136095] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 21, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_do, + [136184] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 16, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_do, + [136275] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4452), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3270), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3272), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [136342] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_do, + [136435] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3420), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4340), 1, + anon_sym_when, + ACTIONS(4342), 1, + anon_sym_COLON_COLON, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4338), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3422), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136542] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4340), 1, + anon_sym_when, + ACTIONS(4342), 1, + anon_sym_COLON_COLON, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4338), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3540), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136649] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136746] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2637), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2639), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [136811] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2649), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [136876] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136975] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4240), 1, + anon_sym_PIPE, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [137078] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2609), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [137143] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2641), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2643), 50, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [137208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3380), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137273] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4240), 1, + anon_sym_PIPE, + ACTIONS(4250), 1, + anon_sym_when, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [137378] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4240), 1, + anon_sym_PIPE, + ACTIONS(4250), 1, + anon_sym_when, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [137483] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 45, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_do, + [137556] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [137621] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [137686] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_do, + [137757] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3378), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3380), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [137822] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [137887] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [137952] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [138017] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [138082] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4240), 1, + anon_sym_PIPE, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_do, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [138183] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__newline_before_do, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 25, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_do, + [138270] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [138335] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 50, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [138400] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(3378), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_do, + [138481] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3374), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3376), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138546] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3370), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3372), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138611] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3542), 1, + sym__newline_before_do, + ACTIONS(3757), 1, + anon_sym_DOT, + ACTIONS(3759), 1, + anon_sym_LBRACK2, + ACTIONS(4330), 1, + anon_sym_PIPE, + ACTIONS(4340), 1, + anon_sym_when, + ACTIONS(4342), 1, + anon_sym_COLON_COLON, + ACTIONS(4344), 1, + anon_sym_EQ_GT, + ACTIONS(4346), 1, + anon_sym_EQ, + ACTIONS(4356), 1, + anon_sym_in, + ACTIONS(4358), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4360), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4364), 1, + anon_sym_STAR_STAR, + ACTIONS(4366), 1, + sym__not_in, + ACTIONS(4332), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4336), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4338), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3544), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4348), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4350), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4328), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4352), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4362), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4354), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [138718] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3366), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3368), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138783] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3362), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3364), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3358), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3360), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [138913] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4454), 1, + anon_sym_COMMA, + STATE(2966), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3443), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3445), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [138982] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4454), 1, + anon_sym_COMMA, + STATE(2967), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3449), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3451), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [139051] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4456), 1, + anon_sym_COMMA, + STATE(2967), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [139120] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 5, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139185] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139250] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139315] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139380] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139445] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3094), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3096), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [139510] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3262), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3264), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [139575] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3204), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [139640] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(3202), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [139709] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3204), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [139774] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3202), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3204), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [139839] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3060), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3062), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [139904] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3468), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3470), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [139969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3388), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [140034] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(3386), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_do, + [140103] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3388), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [140168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [140233] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [140298] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3542), 1, + sym__newline_before_do, + ACTIONS(4240), 1, + anon_sym_PIPE, + ACTIONS(4250), 1, + anon_sym_when, + ACTIONS(4252), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + anon_sym_EQ_GT, + ACTIONS(4256), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_in, + ACTIONS(4268), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4270), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4274), 1, + anon_sym_STAR_STAR, + ACTIONS(4276), 1, + anon_sym_DOT, + ACTIONS(4278), 1, + anon_sym_LBRACK2, + ACTIONS(4280), 1, + sym__not_in, + ACTIONS(4242), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4248), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3544), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4258), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4260), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4238), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4262), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4272), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4264), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [140405] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3386), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3388), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [140470] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2609), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [140535] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2641), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 50, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_end, + [140600] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3194), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3196), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [140665] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3218), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3220), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [140730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3222), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3224), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [140795] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [140860] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4461), 1, + anon_sym_COMMA, + STATE(4378), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4459), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [140969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 5, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 5, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141099] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141164] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2649), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141229] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2637), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141294] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141361] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141428] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3453), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3455), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141493] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3284), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3286), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141558] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2970), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2972), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141623] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3350), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3352), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141688] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3048), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3050), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141753] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3054), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3056), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [141818] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3178), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3180), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [141882] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3242), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3244), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [141946] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2641), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2643), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142010] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2609), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2611), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142074] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2649), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2651), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142138] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3406), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3408), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3170), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3172), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142266] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3054), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3056), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3048), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3050), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142394] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3234), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3236), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3280), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3282), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142522] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3276), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3278), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142586] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3230), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3232), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142650] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3190), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3192), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [142714] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4127), 1, + anon_sym_PIPE, + ACTIONS(4135), 1, + anon_sym_when, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4133), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3540), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142820] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2649), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2651), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [142884] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3538), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4298), 1, + anon_sym_when, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4296), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3540), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142990] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4463), 1, + anon_sym_COMMA, + STATE(3025), 1, + aux_sym_keywords_repeat1, + ACTIONS(3190), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3192), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143058] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_COMMA, + STATE(3062), 1, + aux_sym_keywords_repeat1, + ACTIONS(3443), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3445), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143126] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_end, + [143202] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_end, + [143280] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_end, + [143358] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 34, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_end, + [143442] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_end, + [143530] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_end, + [143620] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_end, + [143712] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_end, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [143808] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_end, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [143906] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2637), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2639), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [143970] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3350), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3352), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144034] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4127), 1, + anon_sym_PIPE, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_end, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [144136] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2970), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2972), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144200] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3284), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3286), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144264] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3453), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3455), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3234), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3236), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144392] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4127), 1, + anon_sym_PIPE, + ACTIONS(4135), 1, + anon_sym_when, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [144496] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4127), 1, + anon_sym_PIPE, + ACTIONS(4135), 1, + anon_sym_when, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_end, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [144600] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3380), 45, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_end, + [144672] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3230), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3232), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [144736] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_end, + [144806] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4127), 1, + anon_sym_PIPE, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_end, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [144906] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 25, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_end, + [144992] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_end, + [145072] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3222), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3224), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145136] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3218), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3220), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145200] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3094), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3096), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145264] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2609), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2611), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3194), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3196), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2641), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2643), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145456] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3048), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3050), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145522] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3054), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3056), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145588] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4459), 1, + anon_sym_GT_GT, + ACTIONS(4470), 1, + anon_sym_PIPE, + ACTIONS(4474), 1, + anon_sym_COMMA, + ACTIONS(4480), 1, + anon_sym_when, + ACTIONS(4482), 1, + anon_sym_COLON_COLON, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + STATE(4684), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4478), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [145696] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3166), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3168), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145760] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145824] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_COMMA, + STATE(3025), 1, + aux_sym_keywords_repeat1, + ACTIONS(3449), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3451), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [145892] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4181), 1, + anon_sym_when, + ACTIONS(4183), 1, + anon_sym_COLON_COLON, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3542), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3544), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [145998] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146062] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4181), 1, + anon_sym_when, + ACTIONS(4183), 1, + anon_sym_COLON_COLON, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3538), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3540), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [146168] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3388), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [146236] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3388), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146300] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2996), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2998), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146364] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2883), 1, + anon_sym_COMMA, + ACTIONS(2916), 1, + anon_sym_DASH_GT, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4522), 1, + anon_sym_when, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + STATE(4290), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [146472] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3066), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3068), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146536] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3468), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3470), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146600] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3453), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3455), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [146664] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3190), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3192), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146728] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3060), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3062), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146792] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146856] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4555), 1, + aux_sym_sigil_token3, + ACTIONS(3270), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3272), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146922] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3250), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3252), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [146986] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3178), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3180), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147050] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3204), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [147118] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3034), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3036), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147182] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147246] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3344), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3346), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147310] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3262), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3264), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147374] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3422), 1, + anon_sym_RPAREN, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4559), 1, + anon_sym_when, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4557), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [147480] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4562), 1, + anon_sym_when, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3540), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [147584] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3382), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3384), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147648] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3276), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3278), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147712] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3390), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3392), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147776] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3394), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3396), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147840] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3030), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3032), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147904] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3398), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3400), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [147968] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3280), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3282), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148032] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3402), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3404), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148096] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4564), 1, + anon_sym_COMMA, + STATE(3094), 1, + aux_sym_keywords_repeat1, + ACTIONS(3190), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3192), 47, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148164] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4567), 1, + anon_sym_COMMA, + STATE(3094), 1, + aux_sym_keywords_repeat1, + ACTIONS(3449), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3451), 47, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148232] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4567), 1, + anon_sym_COMMA, + STATE(3095), 1, + aux_sym_keywords_repeat1, + ACTIONS(3443), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3445), 47, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148300] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3204), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148364] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3362), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3364), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148428] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3542), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4298), 1, + anon_sym_when, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4296), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3544), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [148534] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [148602] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_end, + [148670] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_end, + [148738] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3410), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3412), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [148802] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [148878] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [148956] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3431), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3433), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149020] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3435), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3437), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149084] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_end, + [149152] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [149230] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3439), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3441), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149294] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3340), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3342), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149358] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3288), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3290), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149422] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3480), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3482), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149486] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3186), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3188), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149550] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3366), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3368), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149614] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [149698] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3370), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3372), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149762] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 21, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [149850] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3358), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3360), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149914] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3198), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3200), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [149978] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [150068] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3226), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3228), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150132] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3258), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3260), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150196] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3266), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3268), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150260] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3374), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3376), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150324] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3102), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3104), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150388] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3106), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3108), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150452] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3110), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3112), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150516] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3114), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3116), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150580] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3118), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3120), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150644] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3122), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3124), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150708] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3126), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3128), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150772] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3130), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3132), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150836] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 24, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [150922] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3026), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3028), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [150986] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3022), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3024), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151050] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [151150] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3018), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3020), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151214] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3038), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3040), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151278] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151342] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3460), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3462), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151406] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [151498] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3464), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3466), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151562] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3472), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3474), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151626] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [151722] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3134), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3136), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151786] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [151850] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [151948] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3476), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3478), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152012] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [152114] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4298), 1, + anon_sym_when, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [152218] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4298), 1, + anon_sym_when, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [152322] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3380), 45, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [152394] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4569), 1, + anon_sym_RPAREN, + ACTIONS(4571), 1, + anon_sym_COMMA, + STATE(4679), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [152502] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3138), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3140), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152566] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3378), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3380), 44, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [152638] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3142), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3144), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152702] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [152772] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3146), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3148), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [152836] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [152936] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 25, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [153022] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [153102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3150), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3152), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [153166] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3380), 46, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [153236] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3202), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3204), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [153304] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3386), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3388), 48, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [153372] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2637), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2639), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [153436] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3476), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3478), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153500] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3250), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3252), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153564] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3168), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153628] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3346), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3382), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3384), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153756] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3390), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3392), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153820] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3394), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3396), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153884] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3398), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3400), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [153948] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3402), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3404), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3410), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3412), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154076] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3431), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3433), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154140] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3435), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3437), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154204] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3439), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3441), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154268] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3098), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3100), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [154332] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3460), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3462), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154396] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3464), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3466), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154460] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3474), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154524] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154588] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_DASH_GT, + [154668] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3098), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3100), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [154732] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [154800] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 37, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_DASH_GT, + [154876] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [154944] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [155020] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [155098] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [155176] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 33, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155260] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [155348] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [155438] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [155530] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155626] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3158), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3160), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [155690] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155788] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3162), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3164), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [155852] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3174), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3176), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [155916] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3206), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3208), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [155980] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3210), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3212), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [156044] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3214), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3216), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [156108] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3238), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3240), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [156172] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [156250] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_DASH_GT, + [156328] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 34, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_DASH_GT, + [156410] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 21, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_DASH_GT, + [156496] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 16, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_DASH_GT, + [156584] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3542), 1, + aux_sym__terminator_token1, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4127), 1, + anon_sym_PIPE, + ACTIONS(4135), 1, + anon_sym_when, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4133), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3544), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [156690] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 13, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_DASH_GT, + [156780] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 9, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [156874] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [156970] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [157070] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [157134] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4562), 1, + anon_sym_when, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [157236] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4562), 1, + anon_sym_when, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [157338] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 45, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_DASH_GT, + [157410] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_DASH_GT, + [157480] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [157544] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_DASH_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [157642] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 25, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DASH_GT, + [157726] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3154), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3156), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157790] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3374), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3376), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [157854] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3370), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3372), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [157918] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3366), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3368), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [157982] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3362), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3364), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158046] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3358), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3360), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158110] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3280), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3282), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158174] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3276), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3278), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3262), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3264), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158302] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158366] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 1, + sym__not_in, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [158434] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158498] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158562] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3060), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3062), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158626] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3468), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3470), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158690] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158754] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 1, + sym__not_in, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 48, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + [158822] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [158886] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4562), 1, + anon_sym_when, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3544), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [158990] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159054] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3194), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3196), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159118] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3218), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3220), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159182] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3224), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159246] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3230), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3232), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159310] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3234), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3236), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159374] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3284), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3286), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159438] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2970), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159502] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3350), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3352), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159566] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3048), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3050), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159630] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3054), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3056), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159694] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3170), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3172), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159758] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3406), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3408), 49, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [159822] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3012), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3014), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [159886] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3080), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3082), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [159950] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3378), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 34, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [160030] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4181), 1, + anon_sym_when, + ACTIONS(4183), 1, + anon_sym_COLON_COLON, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3380), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [160134] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3076), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3078), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160198] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3084), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3086), 49, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160262] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3254), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3256), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160326] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4181), 1, + anon_sym_when, + ACTIONS(4183), 1, + anon_sym_COLON_COLON, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3380), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [160430] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3380), 48, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160494] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4183), 1, + anon_sym_COLON_COLON, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3378), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [160596] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3246), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3248), 49, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160660] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3098), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3100), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160723] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3382), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3384), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160786] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3178), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3180), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160849] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 20, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [160934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3234), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3236), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [160997] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 33, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [161078] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [161155] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [161232] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [161307] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [161374] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3222), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3224), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161437] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3250), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3252), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161500] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3230), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3232), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161563] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161626] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3218), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3220), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3476), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3478), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161752] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3194), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3196), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [161878] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_PIPE, + ACTIONS(4480), 1, + anon_sym_when, + ACTIONS(4482), 1, + anon_sym_COLON_COLON, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(3544), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4478), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [161981] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 36, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + [162056] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [162119] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [162196] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3284), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3286), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [162259] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 35, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + [162336] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 33, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [162417] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 20, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + [162502] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 15, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [162589] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4595), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 12, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [162678] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4597), 1, + anon_sym_EQ, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4595), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4599), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [162771] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 1, + sym__not_in, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [162838] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4597), 1, + anon_sym_EQ, + ACTIONS(4601), 1, + anon_sym_EQ_GT, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4595), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4599), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_LBRACE, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [162933] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3166), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3168), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [162996] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2970), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2972), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [163059] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [163122] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4597), 1, + anon_sym_EQ, + ACTIONS(4601), 1, + anon_sym_EQ_GT, + ACTIONS(4603), 1, + anon_sym_PIPE, + ACTIONS(4605), 1, + anon_sym_COLON_COLON, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4595), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4599), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [163221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3474), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [163284] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3350), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3352), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [163347] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4597), 1, + anon_sym_EQ, + ACTIONS(4601), 1, + anon_sym_EQ_GT, + ACTIONS(4603), 1, + anon_sym_PIPE, + ACTIONS(4605), 1, + anon_sym_COLON_COLON, + ACTIONS(4607), 1, + anon_sym_when, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4595), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4599), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3380), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [163448] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4597), 1, + anon_sym_EQ, + ACTIONS(4601), 1, + anon_sym_EQ_GT, + ACTIONS(4603), 1, + anon_sym_PIPE, + ACTIONS(4605), 1, + anon_sym_COLON_COLON, + ACTIONS(4607), 1, + anon_sym_when, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4595), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4599), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3380), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [163549] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3048), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3050), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [163612] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3054), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3056), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [163675] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 44, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [163746] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 46, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [163815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3464), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3466), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [163878] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4597), 1, + anon_sym_EQ, + ACTIONS(4601), 1, + anon_sym_EQ_GT, + ACTIONS(4603), 1, + anon_sym_PIPE, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4595), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4599), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [163975] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 24, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [164058] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3386), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3388), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [164121] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 34, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [164200] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3460), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3462), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [164263] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + [164332] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3170), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3172), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [164395] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3941), 1, + anon_sym_SEMI, + ACTIONS(4173), 1, + anon_sym_PIPE, + ACTIONS(4181), 1, + anon_sym_when, + ACTIONS(4183), 1, + anon_sym_COLON_COLON, + ACTIONS(4185), 1, + anon_sym_EQ_GT, + ACTIONS(4187), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_in, + ACTIONS(4199), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4201), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4205), 1, + anon_sym_STAR_STAR, + ACTIONS(4207), 1, + anon_sym_DOT, + ACTIONS(4209), 1, + anon_sym_LBRACK2, + ACTIONS(4211), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3939), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4175), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4177), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4179), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4189), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4191), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4171), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4193), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4203), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4195), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [164500] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3060), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3062), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [164563] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4597), 1, + anon_sym_EQ, + ACTIONS(4601), 1, + anon_sym_EQ_GT, + ACTIONS(4603), 1, + anon_sym_PIPE, + ACTIONS(4605), 1, + anon_sym_COLON_COLON, + ACTIONS(4607), 1, + anon_sym_when, + ACTIONS(3544), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4595), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4599), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [164666] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3939), 1, + aux_sym__terminator_token1, + ACTIONS(4127), 1, + anon_sym_PIPE, + ACTIONS(4135), 1, + anon_sym_when, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 1, + anon_sym_EQ_GT, + ACTIONS(4141), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_in, + ACTIONS(4153), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4155), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4159), 1, + anon_sym_STAR_STAR, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3941), 2, + anon_sym_SEMI, + anon_sym_end, + ACTIONS(4129), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4131), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4133), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4143), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4145), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4125), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4147), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4157), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4149), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [164771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3406), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3408), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [164834] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4579), 1, + anon_sym_STAR_STAR, + ACTIONS(4581), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4583), 1, + anon_sym_in, + ACTIONS(4585), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4587), 1, + sym__not_in, + ACTIONS(4597), 1, + anon_sym_EQ, + ACTIONS(4601), 1, + anon_sym_EQ_GT, + ACTIONS(4603), 1, + anon_sym_PIPE, + ACTIONS(4605), 1, + anon_sym_COLON_COLON, + ACTIONS(4607), 1, + anon_sym_when, + ACTIONS(3540), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(4573), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4595), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4599), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4589), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4593), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4577), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4591), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [164937] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [165000] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3468), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3470), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [165063] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3453), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3455), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [165126] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3439), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3441), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [165189] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 12, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + [165278] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 1, + sym__not_in, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 47, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [165345] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 8, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [165438] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 7, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [165533] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3202), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3204), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [165596] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3262), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3264), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [165659] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_PIPE, + ACTIONS(4482), 1, + anon_sym_COLON_COLON, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3380), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [165758] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3344), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3346), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [165821] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 15, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + [165908] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3276), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3278), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [165971] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3280), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3282), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3358), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3360), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166097] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3362), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3364), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166160] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_PIPE, + ACTIONS(4480), 1, + anon_sym_when, + ACTIONS(4482), 1, + anon_sym_COLON_COLON, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(3540), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4478), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166263] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166326] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_PIPE, + ACTIONS(4480), 1, + anon_sym_when, + ACTIONS(4482), 1, + anon_sym_COLON_COLON, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3380), 4, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166427] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3453), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3552), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3455), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166492] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_PIPE, + ACTIONS(4480), 1, + anon_sym_when, + ACTIONS(4482), 1, + anon_sym_COLON_COLON, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(3422), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4478), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166595] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3262), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3604), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3264), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [166660] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(3939), 1, + aux_sym__terminator_token1, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4298), 1, + anon_sym_when, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3941), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4296), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166765] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_PIPE, + ACTIONS(4480), 1, + anon_sym_when, + ACTIONS(4482), 1, + anon_sym_COLON_COLON, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3380), 4, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [166866] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 44, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + [166937] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4559), 1, + anon_sym_when, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4557), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [167040] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3658), 1, + anon_sym_LBRACK2, + ACTIONS(4115), 1, + aux_sym__terminator_token1, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4298), 1, + anon_sym_when, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + ACTIONS(4302), 1, + anon_sym_EQ_GT, + ACTIONS(4304), 1, + anon_sym_EQ, + ACTIONS(4314), 1, + anon_sym_in, + ACTIONS(4316), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4318), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4322), 1, + anon_sym_STAR_STAR, + ACTIONS(4324), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4117), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(4292), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4296), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4306), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4308), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4288), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4310), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4320), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4312), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [167145] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3366), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3368), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3370), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3372), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167271] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3374), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3376), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167334] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3390), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3392), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167397] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 1, + sym__not_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3380), 34, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + [167476] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3394), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3396), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167539] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + ACTIONS(3380), 24, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [167622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3190), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3192), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167685] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_EQ_GT, + ACTIONS(4486), 1, + anon_sym_EQ, + ACTIONS(4496), 1, + anon_sym_in, + ACTIONS(4498), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4500), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4504), 1, + anon_sym_STAR_STAR, + ACTIONS(4506), 1, + anon_sym_DOT, + ACTIONS(4508), 1, + anon_sym_LBRACK2, + ACTIONS(4510), 1, + sym__not_in, + ACTIONS(4472), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4476), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4488), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4490), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4468), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4492), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3380), 6, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4502), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4494), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [167782] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3398), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3400), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167845] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3378), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3380), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167908] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3402), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3404), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [167971] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3410), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3412), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [168034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3431), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3433), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [168097] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3435), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3437), 48, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [168160] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4611), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168262] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4613), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168364] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4615), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168466] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4617), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168568] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4619), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168670] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4621), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168772] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4623), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168874] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4625), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [168976] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4627), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169078] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4629), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169180] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4631), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169282] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4633), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169384] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4635), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169486] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4637), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169588] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4639), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169690] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4641), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169792] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4643), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169894] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4645), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [169996] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4647), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170098] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4649), 1, + anon_sym_RBRACK, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170200] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4562), 1, + anon_sym_when, + ACTIONS(4651), 1, + anon_sym_DASH_GT, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170302] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4653), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170404] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4655), 1, + anon_sym_LBRACE, + ACTIONS(3350), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3352), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170468] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4657), 1, + anon_sym_RBRACE, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170570] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 1, + anon_sym_EQ_GT, + ACTIONS(4529), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_in, + ACTIONS(4541), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4543), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4547), 1, + anon_sym_STAR_STAR, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_LBRACK2, + ACTIONS(4553), 1, + sym__not_in, + ACTIONS(4562), 1, + anon_sym_when, + ACTIONS(4659), 1, + anon_sym_DASH_GT, + ACTIONS(4516), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4518), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4520), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4531), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4533), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4512), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4535), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4545), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4537), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170672] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(884), 1, + anon_sym_LBRACE, + ACTIONS(245), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(247), 46, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [170736] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4165), 1, + anon_sym_DOT, + ACTIONS(4167), 1, + anon_sym_LBRACK2, + ACTIONS(4411), 1, + anon_sym_PIPE, + ACTIONS(4417), 1, + anon_sym_COLON_COLON, + ACTIONS(4419), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + anon_sym_EQ, + ACTIONS(4431), 1, + anon_sym_in, + ACTIONS(4433), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4435), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4439), 1, + anon_sym_STAR_STAR, + ACTIONS(4441), 1, + sym__not_in, + ACTIONS(4446), 1, + anon_sym_when, + ACTIONS(4413), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4448), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4423), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4425), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4409), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4427), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4437), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4429), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170835] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4661), 1, + anon_sym_LPAREN, + ACTIONS(4663), 1, + anon_sym_DQUOTE, + ACTIONS(4665), 1, + anon_sym_SQUOTE, + ACTIONS(4667), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4669), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4671), 1, + anon_sym_LBRACE, + ACTIONS(4673), 1, + anon_sym_LBRACK, + ACTIONS(4675), 1, + anon_sym_LT, + ACTIONS(4677), 1, + anon_sym_PIPE, + ACTIONS(4679), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1187), 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, + [170886] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4683), 1, + anon_sym_DQUOTE, + ACTIONS(4685), 1, + anon_sym_SQUOTE, + ACTIONS(4687), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4689), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4691), 1, + anon_sym_LBRACE, + ACTIONS(4693), 1, + anon_sym_LBRACK, + ACTIONS(4695), 1, + anon_sym_LT, + ACTIONS(4697), 1, + anon_sym_PIPE, + ACTIONS(4699), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2821), 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, + [170937] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4701), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + anon_sym_DQUOTE, + ACTIONS(4705), 1, + anon_sym_SQUOTE, + ACTIONS(4707), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4709), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4711), 1, + anon_sym_LBRACE, + ACTIONS(4713), 1, + anon_sym_LBRACK, + ACTIONS(4715), 1, + anon_sym_LT, + ACTIONS(4717), 1, + anon_sym_PIPE, + ACTIONS(4719), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1318), 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, + [170988] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4721), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_DQUOTE, + ACTIONS(4725), 1, + anon_sym_SQUOTE, + ACTIONS(4727), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4729), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4731), 1, + anon_sym_LBRACE, + ACTIONS(4733), 1, + anon_sym_LBRACK, + ACTIONS(4735), 1, + anon_sym_LT, + ACTIONS(4737), 1, + anon_sym_PIPE, + ACTIONS(4739), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1996), 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, + [171039] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4741), 1, + anon_sym_LPAREN, + ACTIONS(4743), 1, + anon_sym_DQUOTE, + ACTIONS(4745), 1, + anon_sym_SQUOTE, + ACTIONS(4747), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4749), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4751), 1, + anon_sym_LBRACE, + ACTIONS(4753), 1, + anon_sym_LBRACK, + ACTIONS(4755), 1, + anon_sym_LT, + ACTIONS(4757), 1, + anon_sym_PIPE, + ACTIONS(4759), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1187), 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, + [171090] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4761), 1, + anon_sym_LPAREN, + ACTIONS(4763), 1, + anon_sym_DQUOTE, + ACTIONS(4765), 1, + anon_sym_SQUOTE, + ACTIONS(4767), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4769), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4771), 1, + anon_sym_LBRACE, + ACTIONS(4773), 1, + anon_sym_LBRACK, + ACTIONS(4775), 1, + anon_sym_LT, + ACTIONS(4777), 1, + anon_sym_PIPE, + ACTIONS(4779), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3076), 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, + [171141] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4781), 1, + anon_sym_LPAREN, + ACTIONS(4783), 1, + anon_sym_DQUOTE, + ACTIONS(4785), 1, + anon_sym_SQUOTE, + ACTIONS(4787), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4791), 1, + anon_sym_LBRACE, + ACTIONS(4793), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_LT, + ACTIONS(4797), 1, + anon_sym_PIPE, + ACTIONS(4799), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3076), 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, + [171192] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4801), 1, + anon_sym_LPAREN, + ACTIONS(4803), 1, + anon_sym_DQUOTE, + ACTIONS(4805), 1, + anon_sym_SQUOTE, + ACTIONS(4807), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4809), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4811), 1, + anon_sym_LBRACE, + ACTIONS(4813), 1, + anon_sym_LBRACK, + ACTIONS(4815), 1, + anon_sym_LT, + ACTIONS(4817), 1, + anon_sym_PIPE, + ACTIONS(4819), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2215), 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, + [171243] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4821), 1, + anon_sym_LPAREN, + ACTIONS(4823), 1, + anon_sym_DQUOTE, + ACTIONS(4825), 1, + anon_sym_SQUOTE, + ACTIONS(4827), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4829), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4831), 1, + anon_sym_LBRACE, + ACTIONS(4833), 1, + anon_sym_LBRACK, + ACTIONS(4835), 1, + anon_sym_LT, + ACTIONS(4837), 1, + anon_sym_PIPE, + ACTIONS(4839), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2215), 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, + [171294] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4841), 1, + anon_sym_LPAREN, + ACTIONS(4843), 1, + anon_sym_DQUOTE, + ACTIONS(4845), 1, + anon_sym_SQUOTE, + ACTIONS(4847), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4849), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4851), 1, + anon_sym_LBRACE, + ACTIONS(4853), 1, + anon_sym_LBRACK, + ACTIONS(4855), 1, + anon_sym_LT, + ACTIONS(4857), 1, + anon_sym_PIPE, + ACTIONS(4859), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1864), 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, + [171345] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4861), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + anon_sym_DQUOTE, + ACTIONS(4865), 1, + anon_sym_SQUOTE, + ACTIONS(4867), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4869), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4871), 1, + anon_sym_LBRACE, + ACTIONS(4873), 1, + anon_sym_LBRACK, + ACTIONS(4875), 1, + anon_sym_LT, + ACTIONS(4877), 1, + anon_sym_PIPE, + ACTIONS(4879), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2682), 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, + [171396] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4881), 1, + anon_sym_LPAREN, + ACTIONS(4883), 1, + anon_sym_DQUOTE, + ACTIONS(4885), 1, + anon_sym_SQUOTE, + ACTIONS(4887), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4889), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4891), 1, + anon_sym_LBRACE, + ACTIONS(4893), 1, + anon_sym_LBRACK, + ACTIONS(4895), 1, + anon_sym_LT, + ACTIONS(4897), 1, + anon_sym_PIPE, + ACTIONS(4899), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2682), 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, + [171447] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4901), 1, + anon_sym_LPAREN, + ACTIONS(4903), 1, + anon_sym_DQUOTE, + ACTIONS(4905), 1, + anon_sym_SQUOTE, + ACTIONS(4907), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4909), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4911), 1, + anon_sym_LBRACE, + ACTIONS(4913), 1, + anon_sym_LBRACK, + ACTIONS(4915), 1, + anon_sym_LT, + ACTIONS(4917), 1, + anon_sym_PIPE, + ACTIONS(4919), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2627), 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, + [171498] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4923), 1, + anon_sym_DQUOTE, + ACTIONS(4925), 1, + anon_sym_SQUOTE, + ACTIONS(4927), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4929), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4931), 1, + anon_sym_LBRACE, + ACTIONS(4933), 1, + anon_sym_LBRACK, + ACTIONS(4935), 1, + anon_sym_LT, + ACTIONS(4937), 1, + anon_sym_PIPE, + ACTIONS(4939), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2627), 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, + [171549] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4941), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_DQUOTE, + ACTIONS(4945), 1, + anon_sym_SQUOTE, + ACTIONS(4947), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4949), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4951), 1, + anon_sym_LBRACE, + ACTIONS(4953), 1, + anon_sym_LBRACK, + ACTIONS(4955), 1, + anon_sym_LT, + ACTIONS(4957), 1, + anon_sym_PIPE, + ACTIONS(4959), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2931), 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, + [171600] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4961), 1, + anon_sym_LPAREN, + ACTIONS(4963), 1, + anon_sym_DQUOTE, + ACTIONS(4965), 1, + anon_sym_SQUOTE, + ACTIONS(4967), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4969), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4971), 1, + anon_sym_LBRACE, + ACTIONS(4973), 1, + anon_sym_LBRACK, + ACTIONS(4975), 1, + anon_sym_LT, + ACTIONS(4977), 1, + anon_sym_PIPE, + ACTIONS(4979), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2574), 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, + [171651] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4981), 1, + anon_sym_LPAREN, + ACTIONS(4983), 1, + anon_sym_DQUOTE, + ACTIONS(4985), 1, + anon_sym_SQUOTE, + ACTIONS(4987), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(4989), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(4991), 1, + anon_sym_LBRACE, + ACTIONS(4993), 1, + anon_sym_LBRACK, + ACTIONS(4995), 1, + anon_sym_LT, + ACTIONS(4997), 1, + anon_sym_PIPE, + ACTIONS(4999), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2736), 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, + [171702] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5001), 1, + anon_sym_LPAREN, + ACTIONS(5003), 1, + anon_sym_DQUOTE, + ACTIONS(5005), 1, + anon_sym_SQUOTE, + ACTIONS(5007), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5009), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5011), 1, + anon_sym_LBRACE, + ACTIONS(5013), 1, + anon_sym_LBRACK, + ACTIONS(5015), 1, + anon_sym_LT, + ACTIONS(5017), 1, + anon_sym_PIPE, + ACTIONS(5019), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1318), 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, + [171753] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5021), 1, + anon_sym_LPAREN, + ACTIONS(5023), 1, + anon_sym_DQUOTE, + ACTIONS(5025), 1, + anon_sym_SQUOTE, + ACTIONS(5027), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5029), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5031), 1, + anon_sym_LBRACE, + ACTIONS(5033), 1, + anon_sym_LBRACK, + ACTIONS(5035), 1, + anon_sym_LT, + ACTIONS(5037), 1, + anon_sym_PIPE, + ACTIONS(5039), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2736), 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, + [171804] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5041), 1, + anon_sym_LPAREN, + ACTIONS(5043), 1, + anon_sym_DQUOTE, + ACTIONS(5045), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5049), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5051), 1, + anon_sym_LBRACE, + ACTIONS(5053), 1, + anon_sym_LBRACK, + ACTIONS(5055), 1, + anon_sym_LT, + ACTIONS(5057), 1, + anon_sym_PIPE, + ACTIONS(5059), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2071), 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, + [171855] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5061), 1, + anon_sym_LPAREN, + ACTIONS(5063), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + anon_sym_SQUOTE, + ACTIONS(5067), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5069), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5071), 1, + anon_sym_LBRACE, + ACTIONS(5073), 1, + anon_sym_LBRACK, + ACTIONS(5075), 1, + anon_sym_LT, + ACTIONS(5077), 1, + anon_sym_PIPE, + ACTIONS(5079), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2155), 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, + [171906] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5081), 1, + anon_sym_LPAREN, + ACTIONS(5083), 1, + anon_sym_DQUOTE, + ACTIONS(5085), 1, + anon_sym_SQUOTE, + ACTIONS(5087), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5089), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5091), 1, + anon_sym_LBRACE, + ACTIONS(5093), 1, + anon_sym_LBRACK, + ACTIONS(5095), 1, + anon_sym_LT, + ACTIONS(5097), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2155), 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, + [171957] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5101), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_DQUOTE, + ACTIONS(5105), 1, + anon_sym_SQUOTE, + ACTIONS(5107), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5109), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5111), 1, + anon_sym_LBRACE, + ACTIONS(5113), 1, + anon_sym_LBRACK, + ACTIONS(5115), 1, + anon_sym_LT, + ACTIONS(5117), 1, + anon_sym_PIPE, + ACTIONS(5119), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2574), 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, + [172008] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5121), 1, + anon_sym_LPAREN, + ACTIONS(5123), 1, + anon_sym_DQUOTE, + ACTIONS(5125), 1, + anon_sym_SQUOTE, + ACTIONS(5127), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5129), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5131), 1, + anon_sym_LBRACE, + ACTIONS(5133), 1, + anon_sym_LBRACK, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, + anon_sym_PIPE, + ACTIONS(5139), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1559), 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, + [172059] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5141), 1, + anon_sym_LPAREN, + ACTIONS(5143), 1, + anon_sym_DQUOTE, + ACTIONS(5145), 1, + anon_sym_SQUOTE, + ACTIONS(5147), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5149), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5151), 1, + anon_sym_LBRACE, + ACTIONS(5153), 1, + anon_sym_LBRACK, + ACTIONS(5155), 1, + anon_sym_LT, + ACTIONS(5157), 1, + anon_sym_PIPE, + ACTIONS(5159), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1559), 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, + [172110] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5161), 1, + anon_sym_LPAREN, + ACTIONS(5163), 1, + anon_sym_DQUOTE, + ACTIONS(5165), 1, + anon_sym_SQUOTE, + ACTIONS(5167), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5169), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5171), 1, + anon_sym_LBRACE, + ACTIONS(5173), 1, + anon_sym_LBRACK, + ACTIONS(5175), 1, + anon_sym_LT, + ACTIONS(5177), 1, + anon_sym_PIPE, + ACTIONS(5179), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1726), 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, + [172161] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5181), 1, + anon_sym_LPAREN, + ACTIONS(5183), 1, + anon_sym_DQUOTE, + ACTIONS(5185), 1, + anon_sym_SQUOTE, + ACTIONS(5187), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5189), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5191), 1, + anon_sym_LBRACE, + ACTIONS(5193), 1, + anon_sym_LBRACK, + ACTIONS(5195), 1, + anon_sym_LT, + ACTIONS(5197), 1, + anon_sym_PIPE, + ACTIONS(5199), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1726), 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, + [172212] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5201), 1, + anon_sym_LPAREN, + ACTIONS(5203), 1, + anon_sym_DQUOTE, + ACTIONS(5205), 1, + anon_sym_SQUOTE, + ACTIONS(5207), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5209), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5211), 1, + anon_sym_LBRACE, + ACTIONS(5213), 1, + anon_sym_LBRACK, + ACTIONS(5215), 1, + anon_sym_LT, + ACTIONS(5217), 1, + anon_sym_PIPE, + ACTIONS(5219), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1864), 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, + [172263] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5221), 1, + anon_sym_LPAREN, + ACTIONS(5223), 1, + anon_sym_DQUOTE, + ACTIONS(5225), 1, + anon_sym_SQUOTE, + ACTIONS(5227), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5229), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5231), 1, + anon_sym_LBRACE, + ACTIONS(5233), 1, + anon_sym_LBRACK, + ACTIONS(5235), 1, + anon_sym_LT, + ACTIONS(5237), 1, + anon_sym_PIPE, + ACTIONS(5239), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2071), 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, + [172314] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5241), 1, + anon_sym_LPAREN, + ACTIONS(5243), 1, + anon_sym_DQUOTE, + ACTIONS(5245), 1, + anon_sym_SQUOTE, + ACTIONS(5247), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5249), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5251), 1, + anon_sym_LBRACE, + ACTIONS(5253), 1, + anon_sym_LBRACK, + ACTIONS(5255), 1, + anon_sym_LT, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5259), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2224), 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, + [172365] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5261), 1, + anon_sym_LPAREN, + ACTIONS(5263), 1, + anon_sym_DQUOTE, + ACTIONS(5265), 1, + anon_sym_SQUOTE, + ACTIONS(5267), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5269), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5271), 1, + anon_sym_LBRACE, + ACTIONS(5273), 1, + anon_sym_LBRACK, + ACTIONS(5275), 1, + anon_sym_LT, + ACTIONS(5277), 1, + anon_sym_PIPE, + ACTIONS(5279), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2224), 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, + [172416] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5281), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, + anon_sym_DQUOTE, + ACTIONS(5285), 1, + anon_sym_SQUOTE, + ACTIONS(5287), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5289), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5291), 1, + anon_sym_LBRACE, + ACTIONS(5293), 1, + anon_sym_LBRACK, + ACTIONS(5295), 1, + anon_sym_LT, + ACTIONS(5297), 1, + anon_sym_PIPE, + ACTIONS(5299), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2931), 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, + [172467] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5301), 1, + anon_sym_LPAREN, + ACTIONS(5303), 1, + anon_sym_DQUOTE, + ACTIONS(5305), 1, + anon_sym_SQUOTE, + ACTIONS(5307), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5309), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5311), 1, + anon_sym_LBRACE, + ACTIONS(5313), 1, + anon_sym_LBRACK, + ACTIONS(5315), 1, + anon_sym_LT, + ACTIONS(5317), 1, + anon_sym_PIPE, + ACTIONS(5319), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1996), 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, + [172518] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5321), 1, + anon_sym_LPAREN, + ACTIONS(5323), 1, + anon_sym_DQUOTE, + ACTIONS(5325), 1, + anon_sym_SQUOTE, + ACTIONS(5327), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5329), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5331), 1, + anon_sym_LBRACE, + ACTIONS(5333), 1, + anon_sym_LBRACK, + ACTIONS(5335), 1, + anon_sym_LT, + ACTIONS(5337), 1, + anon_sym_PIPE, + ACTIONS(5339), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1406), 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, + [172569] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5341), 1, + anon_sym_LPAREN, + ACTIONS(5343), 1, + anon_sym_DQUOTE, + ACTIONS(5345), 1, + anon_sym_SQUOTE, + ACTIONS(5347), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5349), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5351), 1, + anon_sym_LBRACE, + ACTIONS(5353), 1, + anon_sym_LBRACK, + ACTIONS(5355), 1, + anon_sym_LT, + ACTIONS(5357), 1, + anon_sym_PIPE, + ACTIONS(5359), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(1406), 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, + [172620] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5361), 1, + anon_sym_LPAREN, + ACTIONS(5363), 1, + anon_sym_DQUOTE, + ACTIONS(5365), 1, + anon_sym_SQUOTE, + ACTIONS(5367), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5369), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5371), 1, + anon_sym_LBRACE, + ACTIONS(5373), 1, + anon_sym_LBRACK, + ACTIONS(5375), 1, + anon_sym_LT, + ACTIONS(5377), 1, + anon_sym_PIPE, + ACTIONS(5379), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(2821), 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, + [172671] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(347), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3440), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3517), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [172716] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(998), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3528), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [172761] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1008), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3539), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [172806] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(355), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3449), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3516), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [172851] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1008), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5383), 1, + anon_sym_SEMI, + STATE(154), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3539), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [172896] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1018), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3509), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [172941] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1020), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5385), 1, + anon_sym_SEMI, + STATE(142), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3523), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [172986] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1018), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5387), 1, + anon_sym_SEMI, + STATE(141), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3509), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173031] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1014), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3512), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173076] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3536), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173121] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1014), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2928), 1, + anon_sym_SEMI, + STATE(158), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3512), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173166] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1014), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3436), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3512), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173211] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1012), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3502), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3537), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173256] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(323), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3479), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3553), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173301] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(994), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3457), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3526), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173346] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2952), 1, + anon_sym_SEMI, + STATE(153), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3536), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173391] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(311), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3439), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3513), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173436] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(994), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2940), 1, + anon_sym_SEMI, + STATE(172), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3526), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173481] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(994), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3526), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173526] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3433), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3536), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173571] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(327), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3456), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3518), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173616] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(992), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2946), 1, + anon_sym_SEMI, + STATE(173), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3538), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173661] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(351), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3488), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3565), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173706] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1020), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3523), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173751] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1046), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5389), 1, + anon_sym_SEMI, + STATE(157), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3529), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173796] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(992), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3538), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173841] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1046), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3529), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173886] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(335), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3466), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3511), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173931] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(990), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3524), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [173976] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1030), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3531), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174021] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1030), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5391), 1, + anon_sym_SEMI, + STATE(163), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3531), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174066] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3534), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174111] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1040), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3532), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174156] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1040), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2966), 1, + anon_sym_SEMI, + STATE(164), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3532), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174201] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1038), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5393), 1, + anon_sym_SEMI, + STATE(162), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3525), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174246] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1012), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3537), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174291] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5395), 1, + anon_sym_SEMI, + STATE(149), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3534), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174336] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1040), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3460), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3532), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174381] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(992), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3499), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3538), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174426] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(990), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2950), 1, + anon_sym_SEMI, + STATE(159), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3524), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174471] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1006), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3535), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174516] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1024), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3548), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174561] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1006), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2942), 1, + anon_sym_SEMI, + STATE(150), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3535), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174606] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1024), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5397), 1, + anon_sym_SEMI, + STATE(160), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3548), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174651] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1036), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3486), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3563), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174696] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1006), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3462), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3535), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174741] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(331), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3471), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3558), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174786] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1036), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2954), 1, + anon_sym_SEMI, + STATE(170), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3563), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174831] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1036), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3563), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174876] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(990), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3454), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3524), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174921] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1012), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2964), 1, + anon_sym_SEMI, + STATE(168), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3537), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [174966] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1004), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3432), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3545), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175011] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(319), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3495), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3551), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175056] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1042), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5399), 1, + anon_sym_SEMI, + STATE(171), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3556), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175101] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(343), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3463), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3540), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175146] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1042), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3556), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175191] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1004), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2948), 1, + anon_sym_SEMI, + STATE(148), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3545), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175236] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1004), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3545), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175281] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1052), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3498), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3543), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175326] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(339), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3459), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3549), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175371] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(998), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5401), 1, + anon_sym_SEMI, + STATE(147), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3528), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175416] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1032), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3552), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175461] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1052), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2934), 1, + anon_sym_SEMI, + STATE(143), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3543), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175506] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1032), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(2924), 1, + anon_sym_SEMI, + STATE(161), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3552), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175551] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1052), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3543), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175596] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1032), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3472), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3552), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175641] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(988), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5403), 1, + anon_sym_SEMI, + STATE(174), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3541), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175686] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(988), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3541), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175731] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1048), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3564), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175776] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1048), 1, + anon_sym_end, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5405), 1, + anon_sym_SEMI, + STATE(166), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3564), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175821] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(315), 1, + anon_sym_end, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3492), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3547), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175866] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1038), 1, + anon_sym_end, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(3525), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [175911] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1093), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(3642), 1, + sym_pair, + STATE(834), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5407), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [175945] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1093), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(3642), 1, + sym_pair, + STATE(834), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5413), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [175979] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5415), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176010] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5417), 1, + anon_sym_after, + ACTIONS(5420), 1, + anon_sym_catch, + ACTIONS(5423), 1, + anon_sym_else, + ACTIONS(5426), 1, + anon_sym_end, + ACTIONS(5428), 1, + anon_sym_rescue, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176041] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5431), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176072] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5433), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176103] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(984), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176134] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(355), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176165] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1012), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176196] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1018), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176227] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1014), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176258] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(323), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176289] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(311), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176320] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(994), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176351] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176382] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(992), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176413] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(347), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176444] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5435), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176475] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(335), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176506] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(351), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176537] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(986), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176568] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1020), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176599] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1026), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176630] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1046), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176661] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5437), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176692] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(996), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176723] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1016), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176754] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5439), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176785] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1028), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176816] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1030), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176847] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5441), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176878] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1000), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176909] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176940] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1008), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [176971] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1038), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177002] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1048), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177033] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1010), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177064] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1040), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177095] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1050), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177126] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5443), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177157] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(988), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177188] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5445), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177219] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(998), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177250] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(315), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177281] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1032), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177312] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1022), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177343] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(990), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177374] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5447), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177405] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1052), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177436] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1024), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177467] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1036), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177498] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5449), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177529] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(339), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177560] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1044), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177591] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(343), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177622] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1006), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177653] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(327), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177684] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(331), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177715] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(5451), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177746] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(319), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177777] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1042), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177808] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1034), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177839] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(107), 1, + anon_sym_after, + ACTIONS(109), 1, + anon_sym_catch, + ACTIONS(111), 1, + anon_sym_else, + ACTIONS(117), 1, + anon_sym_rescue, + ACTIONS(1004), 1, + anon_sym_end, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + STATE(3506), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [177870] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(3006), 1, + anon_sym_SEMI, + STATE(302), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1379), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [177900] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1427), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [177930] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5453), 1, + anon_sym_SEMI, + STATE(278), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1399), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [177960] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1399), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [177990] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3580), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(668), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178020] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3588), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(664), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178050] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5455), 1, + anon_sym_SEMI, + STATE(285), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1427), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178080] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3581), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1393), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178110] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1437), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178140] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3592), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(696), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178170] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5457), 1, + aux_sym__terminator_token1, + ACTIONS(5460), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5463), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178200] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1143), 1, + sym_keyword, + ACTIONS(5407), 1, + anon_sym_GT_GT, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(3642), 1, + sym_pair, + STATE(776), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [178232] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5465), 1, + anon_sym_SEMI, + STATE(286), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1437), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178262] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(3000), 1, + anon_sym_SEMI, + STATE(336), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1393), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178292] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1393), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178322] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1503), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178352] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5467), 1, + aux_sym__terminator_token1, + ACTIONS(5470), 1, + anon_sym_SEMI, + STATE(260), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(3590), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1327), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178382] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5473), 1, + aux_sym__terminator_token1, + ACTIONS(5476), 1, + anon_sym_SEMI, + STATE(659), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4117), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178412] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3593), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(692), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178442] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3574), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1389), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178472] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(3004), 1, + anon_sym_SEMI, + STATE(307), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1389), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178502] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(5479), 1, + anon_sym_SEMI, + STATE(287), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1503), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178532] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1389), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178562] = 9, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1143), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + ACTIONS(5413), 1, + anon_sym_GT_GT, + STATE(3642), 1, + sym_pair, + STATE(776), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [178594] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5481), 1, + aux_sym__terminator_token1, + ACTIONS(5484), 1, + anon_sym_SEMI, + STATE(628), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(3590), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3941), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178624] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3567), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1379), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178654] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1379), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178684] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3576), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1365), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178714] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3662), 1, + aux_sym__terminator_token1, + ACTIONS(3665), 1, + anon_sym_SEMI, + STATE(259), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(3590), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1321), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178744] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2873), 1, + aux_sym__terminator_token1, + ACTIONS(3016), 1, + anon_sym_SEMI, + STATE(296), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(3583), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1365), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178774] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(5381), 1, + anon_sym_SEMI, + STATE(129), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(3569), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1365), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [178804] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(385), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1869), 1, + sym_pair, + STATE(894), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [178833] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5487), 1, + anon_sym_AMP, + ACTIONS(5491), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5489), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [178856] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1353), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1410), 1, + sym_pair, + STATE(871), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [178885] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(446), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1275), 1, + sym_pair, + STATE(869), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [178914] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1447), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1410), 1, + sym_pair, + STATE(700), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [178943] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(635), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(2686), 1, + sym_pair, + STATE(541), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [178972] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(529), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(2562), 1, + sym_pair, + STATE(813), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179001] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5493), 1, + anon_sym_AMP, + ACTIONS(5497), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5495), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179024] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5503), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5501), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179047] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5505), 1, + anon_sym_AMP, + ACTIONS(5509), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5507), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179070] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(677), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1869), 1, + sym_pair, + STATE(836), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179099] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(93), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(3642), 1, + sym_pair, + STATE(587), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179128] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1515), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(2583), 1, + sym_pair, + STATE(879), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179157] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5511), 1, + anon_sym_AMP, + ACTIONS(5515), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5513), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179180] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5517), 1, + anon_sym_AMP, + ACTIONS(5521), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5519), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179203] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5523), 1, + anon_sym_AMP, + ACTIONS(5527), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5525), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179226] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5529), 1, + anon_sym_AMP, + ACTIONS(5533), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5531), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179249] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(93), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(3021), 1, + sym_pair, + STATE(587), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179278] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5535), 1, + anon_sym_AMP, + ACTIONS(5539), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5537), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179301] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5541), 1, + anon_sym_AMP, + ACTIONS(5545), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5543), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179324] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5547), 1, + anon_sym_AMP, + ACTIONS(5551), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5549), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179347] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1143), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(3360), 1, + sym_pair, + STATE(776), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179376] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1143), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(3642), 1, + sym_pair, + STATE(776), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179405] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5553), 1, + anon_sym_AMP, + ACTIONS(5557), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5555), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179428] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5559), 1, + anon_sym_AMP, + ACTIONS(5563), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5561), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179451] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(276), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1275), 1, + sym_pair, + STATE(874), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179480] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5565), 1, + anon_sym_AMP, + ACTIONS(5569), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5567), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179503] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1481), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1690), 1, + sym_pair, + STATE(876), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179532] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5571), 1, + anon_sym_AMP, + ACTIONS(5575), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5573), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179555] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5577), 1, + anon_sym_AMP, + ACTIONS(5581), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5579), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179578] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(221), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1153), 1, + sym_pair, + STATE(883), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179607] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1467), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1690), 1, + sym_pair, + STATE(882), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179636] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(466), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1153), 1, + sym_pair, + STATE(845), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179665] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1093), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(2583), 1, + sym_pair, + STATE(834), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179694] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1093), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(3642), 1, + sym_pair, + STATE(834), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179723] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(485), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1275), 1, + sym_pair, + STATE(598), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179752] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5583), 1, + anon_sym_AMP, + ACTIONS(5587), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5585), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179775] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5589), 1, + anon_sym_AMP, + ACTIONS(5593), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5591), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179798] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5595), 1, + anon_sym_AMP, + ACTIONS(5599), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5597), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179821] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1431), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(3073), 1, + sym_pair, + STATE(494), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179850] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1337), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(1690), 1, + sym_pair, + STATE(862), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179879] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5601), 1, + anon_sym_AMP, + ACTIONS(5605), 1, + anon_sym_AT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5603), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_CARET, + anon_sym_TILDE_TILDE_TILDE, + anon_sym_not, + [179902] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(580), 1, + sym_keyword, + ACTIONS(5409), 1, + anon_sym_DQUOTE, + ACTIONS(5411), 1, + anon_sym_SQUOTE, + STATE(2339), 1, + sym_pair, + STATE(460), 2, + sym__keyword, + sym_quoted_keyword, + STATE(4881), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [179931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5607), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(1065), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_after, @@ -374058,23738 +316873,23267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [200061] = 4, + [179951] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(5609), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5463), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [179971] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3192), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_when, + anon_sym_DASH_GT, + [179989] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5611), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5613), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [180009] = 7, + ACTIONS(5615), 1, + anon_sym_SQUOTE, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5619), 1, + sym_escape_sequence, + ACTIONS(5621), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3987), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [180034] = 7, + ACTIONS(5623), 1, + anon_sym_SLASH, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5627), 1, + sym_escape_sequence, + ACTIONS(5629), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4070), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [180059] = 7, + ACTIONS(5631), 1, + anon_sym_PIPE, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5635), 1, + sym_escape_sequence, + ACTIONS(5637), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3678), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [180084] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5639), 1, + anon_sym_SLASH, + ACTIONS(5641), 1, + sym_escape_sequence, + ACTIONS(5643), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3679), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [180109] = 7, + ACTIONS(5645), 1, + anon_sym_DQUOTE, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5649), 1, + sym_escape_sequence, + ACTIONS(5651), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3656), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [180134] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5653), 1, + anon_sym_SQUOTE, + ACTIONS(5655), 1, + sym_escape_sequence, + ACTIONS(5657), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3657), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [180159] = 7, + ACTIONS(5659), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5663), 1, + sym_escape_sequence, + ACTIONS(5665), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3658), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [180184] = 7, + ACTIONS(5667), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5671), 1, + sym_escape_sequence, + ACTIONS(5673), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3659), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [180209] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5675), 1, + anon_sym_DQUOTE, + ACTIONS(5677), 1, + sym_escape_sequence, + ACTIONS(5679), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3661), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [180234] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5681), 1, + anon_sym_SQUOTE, + ACTIONS(5683), 1, + sym_escape_sequence, + ACTIONS(5685), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3662), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [180259] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5687), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5689), 1, + sym_escape_sequence, + ACTIONS(5691), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3665), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [180284] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5693), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5695), 1, + sym_escape_sequence, + ACTIONS(5697), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3666), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [180309] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5699), 1, + anon_sym_DQUOTE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [180334] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5705), 1, + anon_sym_SQUOTE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [180359] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5711), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [180384] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5717), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [180409] = 7, + ACTIONS(5723), 1, + anon_sym_RBRACK, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5727), 1, + sym_escape_sequence, + ACTIONS(5729), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3676), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [180434] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(5731), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [180459] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(5733), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [180484] = 7, + ACTIONS(5735), 1, + anon_sym_RBRACE, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5739), 1, + sym_escape_sequence, + ACTIONS(5741), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3675), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [180509] = 7, + ACTIONS(5743), 1, + anon_sym_RPAREN, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5747), 1, + sym_escape_sequence, + ACTIONS(5749), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3674), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [180534] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(5751), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [180559] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(5753), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [180584] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5755), 1, + anon_sym_RPAREN, + ACTIONS(5757), 1, + sym_escape_sequence, + ACTIONS(5759), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3870), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [180609] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5761), 1, + anon_sym_RBRACE, + ACTIONS(5763), 1, + sym_escape_sequence, + ACTIONS(5765), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3885), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [180634] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5767), 1, + anon_sym_RBRACK, + ACTIONS(5769), 1, + sym_escape_sequence, + ACTIONS(5771), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3892), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [180659] = 7, + ACTIONS(5773), 1, + anon_sym_GT, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5777), 1, + sym_escape_sequence, + ACTIONS(5779), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3893), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [180684] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5781), 1, + anon_sym_PIPE, + ACTIONS(5783), 1, + sym_escape_sequence, + ACTIONS(5785), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3894), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [180709] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5787), 1, + anon_sym_SLASH, + ACTIONS(5789), 1, + sym_escape_sequence, + ACTIONS(5791), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3903), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [180734] = 7, + ACTIONS(5793), 1, + anon_sym_DQUOTE, + ACTIONS(5795), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5798), 1, + sym_escape_sequence, + ACTIONS(5801), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [180759] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5804), 1, + anon_sym_RPAREN, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [180784] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5810), 1, + anon_sym_RBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [180809] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5816), 1, + anon_sym_RBRACK, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [180834] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5822), 1, + anon_sym_GT, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [180859] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5828), 1, + anon_sym_PIPE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [180884] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5834), 1, + anon_sym_SLASH, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [180909] = 7, + ACTIONS(5840), 1, + anon_sym_SQUOTE, + ACTIONS(5842), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5845), 1, + sym_escape_sequence, + ACTIONS(5848), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [180934] = 7, + ACTIONS(5851), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5853), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5856), 1, + sym_escape_sequence, + ACTIONS(5859), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [180959] = 7, + ACTIONS(5862), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5864), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5867), 1, + sym_escape_sequence, + ACTIONS(5870), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [180984] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5873), 1, + anon_sym_RPAREN, + ACTIONS(5875), 1, + sym_escape_sequence, + ACTIONS(5877), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4117), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [181009] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5879), 1, + anon_sym_RBRACE, + ACTIONS(5881), 1, + sym_escape_sequence, + ACTIONS(5883), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4116), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [181034] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5885), 1, + anon_sym_RBRACK, + ACTIONS(5887), 1, + sym_escape_sequence, + ACTIONS(5889), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4113), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [181059] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5891), 1, + anon_sym_GT, + ACTIONS(5893), 1, + sym_escape_sequence, + ACTIONS(5895), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4110), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [181084] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5897), 1, + anon_sym_PIPE, + ACTIONS(5899), 1, + sym_escape_sequence, + ACTIONS(5901), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4089), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [181109] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5903), 1, + anon_sym_SLASH, + ACTIONS(5905), 1, + sym_escape_sequence, + ACTIONS(5907), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4087), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [181134] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(5909), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181159] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(5911), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181184] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5913), 1, + anon_sym_SQUOTE, + ACTIONS(5915), 1, + sym_escape_sequence, + ACTIONS(5917), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3689), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181209] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5919), 1, + anon_sym_DQUOTE, + ACTIONS(5921), 1, + sym_escape_sequence, + ACTIONS(5923), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3690), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181234] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(5925), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181259] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(5927), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181284] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(5929), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [181309] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(5931), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [181334] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(5933), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181359] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(5935), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181384] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5937), 1, + anon_sym_SQUOTE, + ACTIONS(5939), 1, + sym_escape_sequence, + ACTIONS(5941), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3693), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181409] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5943), 1, + anon_sym_DQUOTE, + ACTIONS(5945), 1, + sym_escape_sequence, + ACTIONS(5947), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3694), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181434] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(5949), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181459] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5951), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(5953), 1, + sym_escape_sequence, + ACTIONS(5955), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3695), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [181484] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5957), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5959), 1, + sym_escape_sequence, + ACTIONS(5961), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3696), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [181509] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5963), 1, + anon_sym_SQUOTE, + ACTIONS(5965), 1, + sym_escape_sequence, + ACTIONS(5967), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3697), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181534] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5969), 1, + anon_sym_DQUOTE, + ACTIONS(5971), 1, + sym_escape_sequence, + ACTIONS(5973), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3698), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181559] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(5975), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181584] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5977), 1, + anon_sym_SQUOTE, + ACTIONS(5979), 1, + sym_escape_sequence, + ACTIONS(5981), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3701), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181609] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5983), 1, + anon_sym_DQUOTE, + ACTIONS(5985), 1, + sym_escape_sequence, + ACTIONS(5987), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3706), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181634] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(5989), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181659] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(5991), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181684] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5993), 1, + anon_sym_SQUOTE, + ACTIONS(5995), 1, + sym_escape_sequence, + ACTIONS(5997), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3709), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181709] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5999), 1, + anon_sym_DQUOTE, + ACTIONS(6001), 1, + sym_escape_sequence, + ACTIONS(6003), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3724), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181734] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6005), 1, + anon_sym_SQUOTE, + ACTIONS(6007), 1, + sym_escape_sequence, + ACTIONS(6009), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3725), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181759] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6011), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6013), 1, + sym_escape_sequence, + ACTIONS(6015), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3726), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [181784] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6017), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6019), 1, + sym_escape_sequence, + ACTIONS(6021), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3727), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [181809] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6023), 1, + anon_sym_DQUOTE, + ACTIONS(6025), 1, + sym_escape_sequence, + ACTIONS(6027), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3710), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181834] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6029), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181859] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6031), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181884] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6033), 1, + anon_sym_SQUOTE, + ACTIONS(6035), 1, + sym_escape_sequence, + ACTIONS(6037), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3717), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181909] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6039), 1, + anon_sym_DQUOTE, + ACTIONS(6041), 1, + sym_escape_sequence, + ACTIONS(6043), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3718), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181934] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6045), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [181959] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6047), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [181984] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6049), 1, + anon_sym_SQUOTE, + ACTIONS(6051), 1, + sym_escape_sequence, + ACTIONS(6053), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3721), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [182009] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6055), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [182034] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6057), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [182059] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6059), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [182084] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6061), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [182109] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6063), 1, + anon_sym_DQUOTE, + ACTIONS(6065), 1, + sym_escape_sequence, + ACTIONS(6067), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3722), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [182134] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6069), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [182159] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6071), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [182184] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6073), 1, + anon_sym_SQUOTE, + ACTIONS(6075), 1, + sym_escape_sequence, + ACTIONS(6077), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3729), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [182209] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6079), 1, + anon_sym_DQUOTE, + ACTIONS(6081), 1, + sym_escape_sequence, + ACTIONS(6083), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3730), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [182234] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6085), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [182259] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6087), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [182284] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6089), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [182309] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6091), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [182334] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6093), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6095), 1, + sym_escape_sequence, + ACTIONS(6097), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3733), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [182359] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(6099), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [182384] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6101), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6103), 1, + sym_escape_sequence, + ACTIONS(6105), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3734), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [182409] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6107), 1, + anon_sym_SQUOTE, + ACTIONS(6109), 1, + sym_escape_sequence, + ACTIONS(6111), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3735), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [182434] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6113), 1, + anon_sym_DQUOTE, + ACTIONS(6115), 1, + sym_escape_sequence, + ACTIONS(6117), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3736), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [182459] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(6119), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [182484] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6121), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [182509] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(6123), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [182534] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6125), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [182559] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(6127), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [182584] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6129), 1, + anon_sym_RPAREN, + ACTIONS(6131), 1, + sym_escape_sequence, + ACTIONS(6133), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3783), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [182609] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6135), 1, + anon_sym_RBRACE, + ACTIONS(6137), 1, + sym_escape_sequence, + ACTIONS(6139), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3784), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [182634] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6141), 1, + anon_sym_RBRACK, + ACTIONS(6143), 1, + sym_escape_sequence, + ACTIONS(6145), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3785), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [182659] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6147), 1, + anon_sym_GT, + ACTIONS(6149), 1, + sym_escape_sequence, + ACTIONS(6151), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3786), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [182684] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6153), 1, + anon_sym_PIPE, + ACTIONS(6155), 1, + sym_escape_sequence, + ACTIONS(6157), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3787), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [182709] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6159), 1, + anon_sym_SLASH, + ACTIONS(6161), 1, + sym_escape_sequence, + ACTIONS(6163), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3788), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [182734] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6165), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [182759] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6167), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [182784] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6169), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6171), 1, + sym_escape_sequence, + ACTIONS(6173), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3743), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [182809] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6175), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6177), 1, + sym_escape_sequence, + ACTIONS(6179), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3745), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [182834] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6181), 1, + anon_sym_SQUOTE, + ACTIONS(6183), 1, + sym_escape_sequence, + ACTIONS(6185), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3753), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [182859] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6187), 1, + anon_sym_DQUOTE, + ACTIONS(6189), 1, + sym_escape_sequence, + ACTIONS(6191), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3754), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [182884] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6193), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [182909] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6195), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [182934] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6197), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [182959] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6199), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [182984] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6201), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6203), 1, + sym_escape_sequence, + ACTIONS(6205), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3759), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [183009] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(6207), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [183034] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6209), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [183059] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6211), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6213), 1, + sym_escape_sequence, + ACTIONS(6215), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3760), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [183084] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6217), 1, + anon_sym_SQUOTE, + ACTIONS(6219), 1, + sym_escape_sequence, + ACTIONS(6221), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3761), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [183109] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6223), 1, + anon_sym_DQUOTE, + ACTIONS(6225), 1, + sym_escape_sequence, + ACTIONS(6227), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3762), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [183134] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6229), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [183159] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6231), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [183184] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6233), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [183209] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6235), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [183234] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6237), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6239), 1, + sym_escape_sequence, + ACTIONS(6241), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3769), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [183259] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6243), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6245), 1, + sym_escape_sequence, + ACTIONS(6247), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3770), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [183284] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6249), 1, + anon_sym_SQUOTE, + ACTIONS(6251), 1, + sym_escape_sequence, + ACTIONS(6253), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3771), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [183309] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6255), 1, + anon_sym_DQUOTE, + ACTIONS(6257), 1, + sym_escape_sequence, + ACTIONS(6259), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3772), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [183334] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6261), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [183359] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6263), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [183384] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6265), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [183409] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6267), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [183434] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6269), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6271), 1, + sym_escape_sequence, + ACTIONS(6273), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3777), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [183459] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6275), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6277), 1, + sym_escape_sequence, + ACTIONS(6279), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3778), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [183484] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6281), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [183509] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(6283), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [183534] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(6285), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [183559] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(6287), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [183584] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(6289), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [183609] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(6291), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [183634] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6293), 1, + anon_sym_SQUOTE, + ACTIONS(6295), 1, + sym_escape_sequence, + ACTIONS(6297), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3779), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [183659] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6299), 1, + anon_sym_DQUOTE, + ACTIONS(6301), 1, + sym_escape_sequence, + ACTIONS(6303), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3780), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [183684] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6305), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [183709] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6307), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [183734] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6309), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [183759] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6311), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [183784] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6313), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6315), 1, + sym_escape_sequence, + ACTIONS(6317), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3791), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [183809] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6319), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6321), 1, + sym_escape_sequence, + ACTIONS(6323), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3792), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [183834] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6325), 1, + anon_sym_SQUOTE, + ACTIONS(6327), 1, + sym_escape_sequence, + ACTIONS(6329), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3793), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [183859] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6331), 1, + anon_sym_DQUOTE, + ACTIONS(6333), 1, + sym_escape_sequence, + ACTIONS(6335), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3794), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [183884] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6337), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [183909] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6339), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [183934] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6341), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [183959] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6343), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [183984] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6345), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6347), 1, + sym_escape_sequence, + ACTIONS(6349), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3799), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [184009] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6351), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6353), 1, + sym_escape_sequence, + ACTIONS(6355), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3800), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [184034] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6357), 1, + anon_sym_SQUOTE, + ACTIONS(6359), 1, + sym_escape_sequence, + ACTIONS(6361), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3801), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [184059] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6363), 1, + anon_sym_DQUOTE, + ACTIONS(6365), 1, + sym_escape_sequence, + ACTIONS(6367), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3802), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [184084] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6369), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [184109] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6371), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [184134] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6373), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [184159] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6375), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [184184] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6377), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6379), 1, + sym_escape_sequence, + ACTIONS(6381), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3807), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [184209] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6383), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6385), 1, + sym_escape_sequence, + ACTIONS(6387), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3808), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [184234] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6389), 1, + anon_sym_SQUOTE, + ACTIONS(6391), 1, + sym_escape_sequence, + ACTIONS(6393), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3809), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [184259] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6395), 1, + anon_sym_DQUOTE, + ACTIONS(6397), 1, + sym_escape_sequence, + ACTIONS(6399), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3810), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [184284] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6401), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [184309] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6403), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [184334] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6405), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [184359] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6407), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [184384] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6409), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6411), 1, + sym_escape_sequence, + ACTIONS(6413), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3815), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [184409] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6415), 1, + anon_sym_SLASH, + ACTIONS(6417), 1, + sym_escape_sequence, + ACTIONS(6419), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3738), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [184434] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6421), 1, + anon_sym_DQUOTE, + ACTIONS(6423), 1, + sym_escape_sequence, + ACTIONS(6425), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3833), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [184459] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6429), 1, + sym_escape_sequence, + ACTIONS(6431), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3834), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [184484] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6433), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6435), 1, + sym_escape_sequence, + ACTIONS(6437), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3835), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [184509] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6439), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6441), 1, + sym_escape_sequence, + ACTIONS(6443), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3836), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [184534] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6445), 1, + anon_sym_PIPE, + ACTIONS(6447), 1, + sym_escape_sequence, + ACTIONS(6449), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3742), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [184559] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6451), 1, + anon_sym_GT, + ACTIONS(6453), 1, + sym_escape_sequence, + ACTIONS(6455), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3744), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [184584] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6457), 1, + anon_sym_RBRACK, + ACTIONS(6459), 1, + sym_escape_sequence, + ACTIONS(6461), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3746), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [184609] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6463), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6465), 1, + sym_escape_sequence, + ACTIONS(6467), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3816), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [184634] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6469), 1, + anon_sym_RBRACE, + ACTIONS(6471), 1, + sym_escape_sequence, + ACTIONS(6473), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3764), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [184659] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6475), 1, + anon_sym_RPAREN, + ACTIONS(6477), 1, + sym_escape_sequence, + ACTIONS(6479), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3765), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [184684] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6481), 1, + anon_sym_SQUOTE, + ACTIONS(6483), 1, + sym_escape_sequence, + ACTIONS(6485), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3817), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [184709] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6487), 1, + anon_sym_DQUOTE, + ACTIONS(6489), 1, + sym_escape_sequence, + ACTIONS(6491), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3818), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [184734] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6493), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [184759] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6495), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [184784] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6497), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [184809] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6499), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [184834] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6501), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [184859] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6503), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [184884] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6505), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [184909] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6507), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [184934] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6509), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [184959] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6511), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6513), 1, + sym_escape_sequence, + ACTIONS(6515), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3837), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [184984] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6517), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6519), 1, + sym_escape_sequence, + ACTIONS(6521), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3838), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [185009] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6523), 1, + anon_sym_SQUOTE, + ACTIONS(6525), 1, + sym_escape_sequence, + ACTIONS(6527), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3839), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [185034] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6529), 1, + anon_sym_DQUOTE, + ACTIONS(6531), 1, + sym_escape_sequence, + ACTIONS(6533), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3841), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [185059] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6535), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [185084] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6537), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [185109] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6539), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [185134] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6541), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [185159] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6543), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6545), 1, + sym_escape_sequence, + ACTIONS(6547), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3846), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [185184] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6549), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6551), 1, + sym_escape_sequence, + ACTIONS(6553), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3847), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [185209] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6555), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [185234] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6557), 1, + anon_sym_SQUOTE, + ACTIONS(6559), 1, + sym_escape_sequence, + ACTIONS(6561), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3848), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [185259] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6563), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [185284] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6565), 1, + anon_sym_RPAREN, + ACTIONS(6567), 1, + sym_escape_sequence, + ACTIONS(6569), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3886), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [185309] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6571), 1, + anon_sym_RBRACE, + ACTIONS(6573), 1, + sym_escape_sequence, + ACTIONS(6575), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3887), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [185334] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6577), 1, + anon_sym_RBRACK, + ACTIONS(6579), 1, + sym_escape_sequence, + ACTIONS(6581), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3888), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [185359] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6583), 1, + anon_sym_GT, + ACTIONS(6585), 1, + sym_escape_sequence, + ACTIONS(6587), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3889), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [185384] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6589), 1, + anon_sym_PIPE, + ACTIONS(6591), 1, + sym_escape_sequence, + ACTIONS(6593), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3890), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [185409] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6595), 1, + anon_sym_SLASH, + ACTIONS(6597), 1, + sym_escape_sequence, + ACTIONS(6599), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3891), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [185434] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6601), 1, + anon_sym_DQUOTE, + ACTIONS(6603), 1, + sym_escape_sequence, + ACTIONS(6605), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3849), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [185459] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6607), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [185484] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6609), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [185509] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6611), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [185534] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6613), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [185559] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6615), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6617), 1, + sym_escape_sequence, + ACTIONS(6619), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3862), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [185584] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6621), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6623), 1, + sym_escape_sequence, + ACTIONS(6625), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3863), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [185609] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6627), 1, + anon_sym_SQUOTE, + ACTIONS(6629), 1, + sym_escape_sequence, + ACTIONS(6631), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3864), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [185634] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6633), 1, + anon_sym_DQUOTE, + ACTIONS(6635), 1, + sym_escape_sequence, + ACTIONS(6637), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3865), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [185659] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6639), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [185684] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(6641), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [185709] = 7, + ACTIONS(6643), 1, + anon_sym_PIPE, + ACTIONS(6645), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6648), 1, + sym_escape_sequence, + ACTIONS(6651), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [185734] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(6654), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [185759] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(6656), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [185784] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(6658), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [185809] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6660), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [185834] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(6662), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [185859] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6664), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [185884] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6666), 1, + anon_sym_SLASH, + ACTIONS(6668), 1, + sym_escape_sequence, + ACTIONS(6670), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3871), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [185909] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6672), 1, + anon_sym_PIPE, + ACTIONS(6674), 1, + sym_escape_sequence, + ACTIONS(6676), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3873), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [185934] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6678), 1, + anon_sym_GT, + ACTIONS(6680), 1, + sym_escape_sequence, + ACTIONS(6682), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3874), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [185959] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6684), 1, + anon_sym_RBRACK, + ACTIONS(6686), 1, + sym_escape_sequence, + ACTIONS(6688), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3875), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [185984] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6690), 1, + anon_sym_RBRACE, + ACTIONS(6692), 1, + sym_escape_sequence, + ACTIONS(6694), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3877), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [186009] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6696), 1, + anon_sym_RPAREN, + ACTIONS(6698), 1, + sym_escape_sequence, + ACTIONS(6700), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3878), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [186034] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(6702), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [186059] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6704), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [186084] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(6706), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [186109] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(6708), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [186134] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(6710), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [186159] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(6712), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [186184] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(6714), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [186209] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(6716), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [186234] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(6718), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [186259] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(6720), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [186284] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6722), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [186309] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6724), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [186334] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(6726), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [186359] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(6728), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [186384] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6730), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6732), 1, + sym_escape_sequence, + ACTIONS(6734), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3895), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [186409] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6736), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6738), 1, + sym_escape_sequence, + ACTIONS(6740), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3896), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [186434] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6742), 1, + anon_sym_SQUOTE, + ACTIONS(6744), 1, + sym_escape_sequence, + ACTIONS(6746), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3897), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [186459] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6748), 1, + anon_sym_DQUOTE, + ACTIONS(6750), 1, + sym_escape_sequence, + ACTIONS(6752), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3898), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [186484] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(6754), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [186509] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(6756), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [186534] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6758), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6760), 1, + sym_escape_sequence, + ACTIONS(6762), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3852), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [186559] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6764), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6766), 1, + sym_escape_sequence, + ACTIONS(6768), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3854), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [186584] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(6770), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [186609] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6772), 1, + anon_sym_SQUOTE, + ACTIONS(6774), 1, + sym_escape_sequence, + ACTIONS(6776), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3840), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [186634] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6778), 1, + anon_sym_DQUOTE, + ACTIONS(6780), 1, + sym_escape_sequence, + ACTIONS(6782), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3876), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [186659] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(6784), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [186684] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(6786), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [186709] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(6788), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [186734] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6790), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [186759] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6792), 1, + anon_sym_SLASH, + ACTIONS(6794), 1, + sym_escape_sequence, + ACTIONS(6796), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3904), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [186784] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6798), 1, + anon_sym_PIPE, + ACTIONS(6800), 1, + sym_escape_sequence, + ACTIONS(6802), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3907), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [186809] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6804), 1, + anon_sym_GT, + ACTIONS(6806), 1, + sym_escape_sequence, + ACTIONS(6808), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3910), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [186834] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6810), 1, + anon_sym_RBRACK, ACTIONS(6812), 1, - anon_sym_LF, + sym_escape_sequence, + ACTIONS(6814), 1, + sym__quoted_content_i_square, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3911), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [186859] = 7, ACTIONS(6816), 1, anon_sym_SLASH, ACTIONS(6818), 1, anon_sym_POUND_LBRACE, - ACTIONS(6820), 1, + ACTIONS(6821), 1, sym_escape_sequence, - ACTIONS(6822), 1, + ACTIONS(6824), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4369), 2, + STATE(3918), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [200106] = 7, - ACTIONS(6824), 1, - anon_sym_RBRACK, - ACTIONS(6826), 1, + [186884] = 7, + ACTIONS(5737), 1, anon_sym_POUND_LBRACE, - ACTIONS(6828), 1, + ACTIONS(6827), 1, + anon_sym_RBRACE, + ACTIONS(6829), 1, sym_escape_sequence, - ACTIONS(6830), 1, - sym__quoted_content_i_square, + ACTIONS(6831), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4372), 2, + STATE(3912), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [200131] = 7, - ACTIONS(6832), 1, - anon_sym_DQUOTE, - ACTIONS(6834), 1, + aux_sym__quoted_i_curly_repeat1, + [186909] = 7, + ACTIONS(5745), 1, anon_sym_POUND_LBRACE, - ACTIONS(6836), 1, + ACTIONS(6833), 1, + anon_sym_RPAREN, + ACTIONS(6835), 1, sym_escape_sequence, - ACTIONS(6838), 1, - sym__quoted_content_i_double, + ACTIONS(6837), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4223), 2, + STATE(3913), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [200156] = 7, - ACTIONS(6840), 1, - anon_sym_SQUOTE, - ACTIONS(6842), 1, + aux_sym__quoted_i_parenthesis_repeat1, + [186934] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(6844), 1, + ACTIONS(5719), 1, sym_escape_sequence, - ACTIONS(6846), 1, - sym__quoted_content_i_single, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6839), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4225), 2, + STATE(3682), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [200181] = 7, - ACTIONS(6848), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6850), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [186959] = 7, + ACTIONS(5661), 1, anon_sym_POUND_LBRACE, - ACTIONS(6852), 1, + ACTIONS(5713), 1, sym_escape_sequence, - ACTIONS(6854), 1, + ACTIONS(5715), 1, sym__quoted_content_i_heredoc_single, + ACTIONS(6841), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4227), 2, + STATE(3681), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [200206] = 7, + [186984] = 7, + ACTIONS(6843), 1, + anon_sym_GT, + ACTIONS(6845), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6848), 1, + sym_escape_sequence, + ACTIONS(6851), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [187009] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6854), 1, + anon_sym_DQUOTE, ACTIONS(6856), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + sym_escape_sequence, ACTIONS(6858), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3936), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [187034] = 7, + ACTIONS(5617), 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, + ACTIONS(6862), 1, sym_escape_sequence, - ACTIONS(6874), 1, + ACTIONS(6864), 1, sym__quoted_content_i_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4211), 2, + STATE(3937), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [200281] = 7, - ACTIONS(6850), 1, + [187059] = 7, + ACTIONS(5661), 1, anon_sym_POUND_LBRACE, - ACTIONS(6876), 1, + ACTIONS(6866), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6878), 1, + ACTIONS(6868), 1, sym_escape_sequence, - ACTIONS(6880), 1, + ACTIONS(6870), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4212), 2, + STATE(3938), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [200306] = 7, - ACTIONS(6858), 1, + [187084] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(6882), 1, + ACTIONS(6872), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6884), 1, + ACTIONS(6874), 1, + sym_escape_sequence, + ACTIONS(6876), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3939), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [187109] = 7, + ACTIONS(6878), 1, + anon_sym_RBRACK, + ACTIONS(6880), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6883), 1, sym_escape_sequence, ACTIONS(6886), 1, - sym__quoted_content_i_heredoc_double, + sym__quoted_content_i_square, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4219), 2, + STATE(3928), 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, + aux_sym__quoted_i_square_repeat1, + [187134] = 7, + ACTIONS(6889), 1, + anon_sym_RBRACE, + ACTIONS(6891), 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(6897), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4256), 2, + STATE(3929), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [200381] = 7, - ACTIONS(6850), 1, - anon_sym_POUND_LBRACE, + aux_sym__quoted_i_curly_repeat1, + [187159] = 7, ACTIONS(6900), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_RPAREN, 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, + ACTIONS(6905), 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_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4350), 2, + STATE(3930), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [200556] = 7, - ACTIONS(6858), 1, + [187184] = 7, + ACTIONS(5617), 1, anon_sym_POUND_LBRACE, - ACTIONS(6942), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6944), 1, + ACTIONS(5707), 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, + ACTIONS(5709), 1, sym__quoted_content_i_single, - ACTIONS(6974), 1, + ACTIONS(6911), 1, anon_sym_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4256), 2, + STATE(3680), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [200731] = 7, - ACTIONS(6910), 1, + [187209] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(6976), 1, - anon_sym_RBRACE, - ACTIONS(6978), 1, + ACTIONS(5701), 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, + ACTIONS(5703), 1, sym__quoted_content_i_double, + ACTIONS(6913), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4248), 2, + STATE(3673), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [200881] = 7, - ACTIONS(6842), 1, + [187234] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(7000), 1, - anon_sym_SQUOTE, - ACTIONS(7002), 1, + ACTIONS(6915), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6917), 1, sym_escape_sequence, - ACTIONS(7004), 1, + ACTIONS(6919), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3921), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [187259] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6921), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6923), 1, + sym_escape_sequence, + ACTIONS(6925), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3922), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [187284] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6927), 1, + anon_sym_SQUOTE, + ACTIONS(6929), 1, + sym_escape_sequence, + ACTIONS(6931), 1, sym__quoted_content_i_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4249), 2, + STATE(3931), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [200906] = 7, - ACTIONS(6850), 1, + [187309] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(7006), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7008), 1, + ACTIONS(5701), 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, + ACTIONS(5703), 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, + ACTIONS(6933), 1, anon_sym_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4254), 2, + STATE(3673), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [201306] = 7, - ACTIONS(6842), 1, + [187334] = 7, + ACTIONS(5617), 1, anon_sym_POUND_LBRACE, - ACTIONS(6896), 1, + ACTIONS(5707), 1, sym_escape_sequence, - ACTIONS(6898), 1, + ACTIONS(5709), 1, sym__quoted_content_i_single, - ACTIONS(7078), 1, + ACTIONS(6935), 1, anon_sym_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4256), 2, + STATE(3680), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [201331] = 7, - ACTIONS(6850), 1, + [187359] = 7, + ACTIONS(5661), 1, anon_sym_POUND_LBRACE, - ACTIONS(6902), 1, + ACTIONS(5713), 1, sym_escape_sequence, - ACTIONS(6904), 1, + ACTIONS(5715), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(7080), 1, + ACTIONS(6937), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4258), 2, + STATE(3681), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [201356] = 7, - ACTIONS(6858), 1, + [187384] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(6944), 1, + ACTIONS(5719), 1, sym_escape_sequence, - ACTIONS(6946), 1, + ACTIONS(5721), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(7082), 1, + ACTIONS(6939), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4260), 2, + STATE(3682), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [201381] = 7, - ACTIONS(6858), 1, + [187409] = 7, + ACTIONS(5647), 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, + ACTIONS(6941), 1, anon_sym_DQUOTE, + ACTIONS(6943), 1, + sym_escape_sequence, + ACTIONS(6945), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4254), 2, + STATE(3932), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [201431] = 7, - ACTIONS(7092), 1, - anon_sym_DQUOTE, - ACTIONS(7094), 1, + [187434] = 7, + ACTIONS(5625), 1, anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(6947), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [187459] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(6949), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [187484] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(6951), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [187509] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(6953), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [187534] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(6955), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [187559] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6957), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [187584] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6959), 1, + anon_sym_SLASH, + ACTIONS(6961), 1, + sym_escape_sequence, + ACTIONS(6963), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3941), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [187609] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6965), 1, + anon_sym_PIPE, + ACTIONS(6967), 1, + sym_escape_sequence, + ACTIONS(6969), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3942), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [187634] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6971), 1, + anon_sym_GT, + ACTIONS(6973), 1, + sym_escape_sequence, + ACTIONS(6975), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3943), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [187659] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6977), 1, + anon_sym_RBRACK, + ACTIONS(6979), 1, + sym_escape_sequence, + ACTIONS(6981), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3944), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [187684] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6983), 1, + anon_sym_RBRACE, + ACTIONS(6985), 1, + sym_escape_sequence, + ACTIONS(6987), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3945), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [187709] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6989), 1, + anon_sym_RPAREN, + ACTIONS(6991), 1, + sym_escape_sequence, + ACTIONS(6993), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3946), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [187734] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6995), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [187759] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6997), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [187784] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(6999), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [187809] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(7001), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [187834] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(7003), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [187859] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7005), 1, + anon_sym_RPAREN, + ACTIONS(7007), 1, + sym_escape_sequence, + ACTIONS(7009), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3989), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [187884] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7011), 1, + anon_sym_RBRACE, + ACTIONS(7013), 1, + sym_escape_sequence, + ACTIONS(7015), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3990), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [187909] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7017), 1, + anon_sym_RBRACK, + ACTIONS(7019), 1, + sym_escape_sequence, + ACTIONS(7021), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3991), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [187934] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7023), 1, + anon_sym_GT, + ACTIONS(7025), 1, + sym_escape_sequence, + ACTIONS(7027), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3992), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [187959] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7029), 1, + anon_sym_PIPE, + ACTIONS(7031), 1, + sym_escape_sequence, + ACTIONS(7033), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3993), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [187984] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7035), 1, + anon_sym_SLASH, + ACTIONS(7037), 1, + sym_escape_sequence, + ACTIONS(7039), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3994), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [188009] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(7041), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [188034] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7043), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7045), 1, + sym_escape_sequence, + ACTIONS(7047), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3953), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [188059] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7049), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7051), 1, + sym_escape_sequence, + ACTIONS(7053), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3954), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [188084] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7055), 1, + anon_sym_SQUOTE, + ACTIONS(7057), 1, + sym_escape_sequence, + ACTIONS(7059), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3956), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [188109] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7061), 1, + anon_sym_DQUOTE, + ACTIONS(7063), 1, + sym_escape_sequence, + ACTIONS(7065), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3964), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [188134] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(7067), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [188159] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(7069), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [188184] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7071), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [188209] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(7073), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [188234] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(7075), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [188259] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7077), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [188284] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7079), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [188309] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7081), 1, + anon_sym_SLASH, + ACTIONS(7083), 1, + sym_escape_sequence, + ACTIONS(7085), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3969), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [188334] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7087), 1, + anon_sym_PIPE, + ACTIONS(7089), 1, + sym_escape_sequence, + ACTIONS(7091), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3970), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [188359] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7093), 1, + anon_sym_GT, + ACTIONS(7095), 1, + sym_escape_sequence, ACTIONS(7097), 1, - sym_escape_sequence, - ACTIONS(7100), 1, - sym__quoted_content_i_double, + sym__quoted_content_i_angle, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4254), 2, + STATE(3971), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [201456] = 7, - ACTIONS(6842), 1, + aux_sym__quoted_i_angle_repeat1, + [188384] = 7, + ACTIONS(5725), 1, anon_sym_POUND_LBRACE, - ACTIONS(6896), 1, + ACTIONS(5818), 1, sym_escape_sequence, - ACTIONS(6898), 1, - sym__quoted_content_i_single, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(7099), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [188409] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(7101), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [188434] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, ACTIONS(7103), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4256), 2, + STATE(3930), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [201481] = 7, + aux_sym__quoted_i_parenthesis_repeat1, + [188459] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, ACTIONS(7105), 1, - anon_sym_SQUOTE, + anon_sym_RBRACK, ACTIONS(7107), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7110), 1, sym_escape_sequence, + ACTIONS(7109), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3972), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [188484] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7111), 1, + anon_sym_RBRACE, 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(7115), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4258), 2, + STATE(3973), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [201531] = 7, - ACTIONS(7118), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7120), 1, + aux_sym__quoted_i_curly_repeat1, + [188509] = 7, + ACTIONS(5745), 1, anon_sym_POUND_LBRACE, + ACTIONS(7117), 1, + anon_sym_RPAREN, + ACTIONS(7119), 1, + sym_escape_sequence, + ACTIONS(7121), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3974), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [188534] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(7123), 1, - sym_escape_sequence, - ACTIONS(7126), 1, - sym__quoted_content_i_heredoc_single, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4258), 2, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [188559] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7125), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [201556] = 7, - ACTIONS(6858), 1, + [188584] = 7, + ACTIONS(5617), 1, anon_sym_POUND_LBRACE, - ACTIONS(6944), 1, + ACTIONS(5707), 1, sym_escape_sequence, - ACTIONS(6946), 1, - sym__quoted_content_i_heredoc_double, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(7127), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [188609] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, ACTIONS(7129), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4260), 2, + STATE(3673), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [201581] = 7, + aux_sym__quoted_i_double_repeat1, + [188634] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, ACTIONS(7131), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [188659] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, ACTIONS(7133), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [188684] = 7, + ACTIONS(5725), 1, anon_sym_POUND_LBRACE, - ACTIONS(7136), 1, + ACTIONS(5818), 1, sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(7135), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [188709] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7137), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [188734] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, 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_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4315), 2, + STATE(3872), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, - [201656] = 7, - ACTIONS(6936), 1, + [188759] = 7, + ACTIONS(5625), 1, anon_sym_POUND_LBRACE, - ACTIONS(7154), 1, - anon_sym_RPAREN, - ACTIONS(7156), 1, + ACTIONS(5836), 1, sym_escape_sequence, - ACTIONS(7158), 1, - sym__quoted_content_i_parenthesis, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(7141), 1, + anon_sym_SLASH, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4283), 2, + STATE(3918), 2, sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [201681] = 7, - ACTIONS(6928), 1, + aux_sym__quoted_i_slash_repeat1, + [188784] = 7, + ACTIONS(5669), 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, + ACTIONS(7143), 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, + ACTIONS(7145), 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, + ACTIONS(7147), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4265), 2, + STATE(3985), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [202356] = 7, - ACTIONS(6850), 1, + [188809] = 7, + ACTIONS(5661), 1, anon_sym_POUND_LBRACE, - ACTIONS(7282), 1, + ACTIONS(7149), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7284), 1, + ACTIONS(7151), 1, sym_escape_sequence, - ACTIONS(7286), 1, + ACTIONS(7153), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4266), 2, + STATE(3986), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [202381] = 7, - ACTIONS(6842), 1, + [188834] = 7, + ACTIONS(5647), 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, + ACTIONS(7155), 1, anon_sym_DQUOTE, - ACTIONS(7296), 1, + ACTIONS(7157), 1, sym_escape_sequence, - ACTIONS(7298), 1, + ACTIONS(7159), 1, sym__quoted_content_i_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4269), 2, + STATE(3988), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [202431] = 7, - ACTIONS(6834), 1, + [188859] = 7, + ACTIONS(5625), 1, anon_sym_POUND_LBRACE, - ACTIONS(7300), 1, - anon_sym_DQUOTE, - ACTIONS(7302), 1, + ACTIONS(5836), 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, + ACTIONS(5838), 1, sym__quoted_content_i_slash, - ACTIONS(7330), 1, + ACTIONS(7161), 1, anon_sym_SLASH, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4369), 2, + STATE(3918), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [202631] = 7, - ACTIONS(6910), 1, + [188884] = 7, + ACTIONS(5633), 1, anon_sym_POUND_LBRACE, - ACTIONS(6912), 1, + ACTIONS(5830), 1, sym_escape_sequence, - ACTIONS(6914), 1, - sym__quoted_content_i_curly, - ACTIONS(7332), 1, - anon_sym_RBRACE, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(7163), 1, + anon_sym_PIPE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4370), 2, + STATE(3872), 2, sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [202656] = 7, - ACTIONS(6826), 1, + aux_sym__quoted_i_bar_repeat1, + [188909] = 7, + ACTIONS(5775), 1, anon_sym_POUND_LBRACE, - ACTIONS(6828), 1, + ACTIONS(5824), 1, sym_escape_sequence, - ACTIONS(6830), 1, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7165), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [188934] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, sym__quoted_content_i_square, - ACTIONS(7334), 1, + ACTIONS(7167), 1, anon_sym_RBRACK, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4372), 2, + STATE(3928), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [202681] = 7, - ACTIONS(6834), 1, + [188959] = 7, + ACTIONS(5737), 1, anon_sym_POUND_LBRACE, - ACTIONS(6890), 1, + ACTIONS(5812), 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, + ACTIONS(5814), 1, sym__quoted_content_i_curly, + ACTIONS(7169), 1, + anon_sym_RBRACE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4323), 2, + STATE(3929), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [202906] = 7, - ACTIONS(6826), 1, + [188984] = 7, + ACTIONS(5745), 1, anon_sym_POUND_LBRACE, - ACTIONS(7374), 1, - anon_sym_RBRACK, - ACTIONS(7376), 1, + ACTIONS(5806), 1, sym_escape_sequence, - ACTIONS(7378), 1, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7171), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [189009] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7173), 1, + anon_sym_SLASH, + ACTIONS(7175), 1, + sym_escape_sequence, + ACTIONS(7177), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3998), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [189034] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7179), 1, + anon_sym_PIPE, + ACTIONS(7181), 1, + sym_escape_sequence, + ACTIONS(7183), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3999), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [189059] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7185), 1, + anon_sym_GT, + ACTIONS(7187), 1, + sym_escape_sequence, + ACTIONS(7189), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4000), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [189084] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7191), 1, + anon_sym_RBRACK, + ACTIONS(7193), 1, + sym_escape_sequence, + ACTIONS(7195), 1, sym__quoted_content_i_square, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4324), 2, + STATE(4001), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [202931] = 7, - ACTIONS(6936), 1, + [189109] = 7, + ACTIONS(5737), 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, + ACTIONS(7197), 1, anon_sym_RBRACE, + ACTIONS(7199), 1, + sym_escape_sequence, + ACTIONS(7201), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4370), 2, + STATE(4002), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [203081] = 7, - ACTIONS(6928), 1, + [189134] = 7, + ACTIONS(5745), 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, + ACTIONS(7203), 1, anon_sym_RPAREN, + ACTIONS(7205), 1, + sym_escape_sequence, + ACTIONS(7207), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4350), 2, + STATE(4003), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [203356] = 7, - ACTIONS(6834), 1, + [189159] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(7414), 1, + ACTIONS(7209), 1, anon_sym_DQUOTE, - ACTIONS(7416), 1, + ACTIONS(7211), 1, sym_escape_sequence, - ACTIONS(7418), 1, + ACTIONS(7213), 1, sym__quoted_content_i_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4340), 2, + STATE(4038), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [203381] = 7, - ACTIONS(6842), 1, + [189184] = 7, + ACTIONS(5617), 1, anon_sym_POUND_LBRACE, - ACTIONS(7420), 1, + ACTIONS(7215), 1, anon_sym_SQUOTE, - ACTIONS(7422), 1, + ACTIONS(7217), 1, sym_escape_sequence, - ACTIONS(7424), 1, + ACTIONS(7219), 1, sym__quoted_content_i_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4341), 2, + STATE(4043), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [203406] = 7, - ACTIONS(6834), 1, + [189209] = 7, + ACTIONS(5661), 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, + ACTIONS(7221), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7434), 1, + ACTIONS(7223), 1, sym_escape_sequence, - ACTIONS(7436), 1, + ACTIONS(7225), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4342), 2, + STATE(4044), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [203456] = 7, - ACTIONS(6834), 1, + [189234] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(7438), 1, - anon_sym_DQUOTE, - ACTIONS(7440), 1, + ACTIONS(7227), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7229), 1, sym_escape_sequence, - ACTIONS(7442), 1, - sym__quoted_content_i_double, + ACTIONS(7231), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4352), 2, + STATE(4051), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [203481] = 7, - ACTIONS(6842), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [189259] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(7444), 1, - anon_sym_SQUOTE, - ACTIONS(7446), 1, + ACTIONS(5719), 1, sym_escape_sequence, - ACTIONS(7448), 1, - sym__quoted_content_i_single, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7233), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4353), 2, + STATE(3682), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [203506] = 7, - ACTIONS(6850), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [189284] = 7, + ACTIONS(5661), 1, anon_sym_POUND_LBRACE, - ACTIONS(7450), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7452), 1, + ACTIONS(5713), 1, sym_escape_sequence, - ACTIONS(7454), 1, + ACTIONS(5715), 1, sym__quoted_content_i_heredoc_single, + ACTIONS(7235), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4354), 2, + STATE(3681), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [203531] = 7, - ACTIONS(6858), 1, + [189309] = 7, + ACTIONS(5617), 1, anon_sym_POUND_LBRACE, - ACTIONS(7456), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7458), 1, + ACTIONS(5707), 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, + ACTIONS(5709), 1, sym__quoted_content_i_single, - ACTIONS(7470), 1, + ACTIONS(7237), 1, anon_sym_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4256), 2, + STATE(3680), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [203631] = 7, - ACTIONS(6850), 1, + [189334] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(6902), 1, + ACTIONS(5701), 1, sym_escape_sequence, - ACTIONS(6904), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(7472), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(7239), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4258), 2, + STATE(3673), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [203656] = 7, - ACTIONS(6858), 1, + aux_sym__quoted_i_double_repeat1, + [189359] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(6944), 1, - sym_escape_sequence, - ACTIONS(6946), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(7474), 1, + ACTIONS(7241), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7243), 1, + sym_escape_sequence, + ACTIONS(7245), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4260), 2, + STATE(4014), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [203681] = 7, - ACTIONS(6936), 1, + [189384] = 7, + ACTIONS(5661), 1, anon_sym_POUND_LBRACE, - ACTIONS(7476), 1, - anon_sym_RPAREN, - ACTIONS(7478), 1, + ACTIONS(7247), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7249), 1, sym_escape_sequence, - ACTIONS(7480), 1, - sym__quoted_content_i_parenthesis, + ACTIONS(7251), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4351), 2, + STATE(4015), 2, sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [203706] = 7, - ACTIONS(6928), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [189409] = 7, + ACTIONS(5617), 1, anon_sym_POUND_LBRACE, - ACTIONS(7482), 1, - anon_sym_PIPE, - ACTIONS(7484), 1, + ACTIONS(7253), 1, + anon_sym_SQUOTE, + ACTIONS(7255), 1, sym_escape_sequence, - ACTIONS(7486), 1, - sym__quoted_content_i_bar, + ACTIONS(7257), 1, + sym__quoted_content_i_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4356), 2, + STATE(4016), 2, sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [203731] = 7, - ACTIONS(6920), 1, + aux_sym__quoted_i_single_repeat1, + [189434] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(7488), 1, - anon_sym_GT, - ACTIONS(7490), 1, + ACTIONS(7259), 1, + anon_sym_DQUOTE, + ACTIONS(7261), 1, sym_escape_sequence, - ACTIONS(7492), 1, - sym__quoted_content_i_angle, + ACTIONS(7263), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4357), 2, + STATE(4017), 2, sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [203756] = 7, - ACTIONS(6818), 1, + aux_sym__quoted_i_double_repeat1, + [189459] = 7, + ACTIONS(5625), 1, anon_sym_POUND_LBRACE, - ACTIONS(7494), 1, - anon_sym_SLASH, - ACTIONS(7496), 1, + ACTIONS(5836), 1, sym_escape_sequence, - ACTIONS(7498), 1, + ACTIONS(5838), 1, sym__quoted_content_i_slash, + ACTIONS(7265), 1, + anon_sym_SLASH, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4361), 2, + STATE(3918), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [203781] = 7, - ACTIONS(6910), 1, + [189484] = 7, + ACTIONS(5633), 1, anon_sym_POUND_LBRACE, - ACTIONS(7500), 1, - anon_sym_RBRACE, - ACTIONS(7502), 1, + ACTIONS(5830), 1, sym_escape_sequence, - ACTIONS(7504), 1, - sym__quoted_content_i_curly, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(7267), 1, + anon_sym_PIPE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4363), 2, + STATE(3872), 2, sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [203806] = 7, - ACTIONS(6826), 1, + aux_sym__quoted_i_bar_repeat1, + [189509] = 7, + ACTIONS(5775), 1, anon_sym_POUND_LBRACE, - ACTIONS(7506), 1, - anon_sym_RBRACK, - ACTIONS(7508), 1, + ACTIONS(5824), 1, sym_escape_sequence, - ACTIONS(7510), 1, - sym__quoted_content_i_square, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7269), 1, + anon_sym_GT, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4366), 2, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [189534] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(7271), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [203831] = 7, - ACTIONS(7512), 1, + [189559] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(7273), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [189584] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7275), 1, + anon_sym_DQUOTE, + ACTIONS(7277), 1, + sym_escape_sequence, + ACTIONS(7279), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4039), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [189609] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7281), 1, + anon_sym_SQUOTE, + ACTIONS(7283), 1, + sym_escape_sequence, + ACTIONS(7285), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4040), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [189634] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7287), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7289), 1, + sym_escape_sequence, + ACTIONS(7291), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4041), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [189659] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7293), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7295), 1, + sym_escape_sequence, + ACTIONS(7297), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4042), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [189684] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7299), 1, anon_sym_RPAREN, - ACTIONS(7514), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [189709] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7301), 1, + anon_sym_SLASH, + ACTIONS(7303), 1, + sym_escape_sequence, + ACTIONS(7305), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4022), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [189734] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7307), 1, + anon_sym_PIPE, + ACTIONS(7309), 1, + sym_escape_sequence, + ACTIONS(7311), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4023), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [189759] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7313), 1, + anon_sym_GT, + ACTIONS(7315), 1, + sym_escape_sequence, + ACTIONS(7317), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4024), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [189784] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7319), 1, + anon_sym_RBRACK, + ACTIONS(7321), 1, + sym_escape_sequence, + ACTIONS(7323), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4025), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [189809] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7325), 1, + anon_sym_RBRACE, + ACTIONS(7327), 1, + sym_escape_sequence, + ACTIONS(7329), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4026), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [189834] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7331), 1, + anon_sym_RPAREN, + ACTIONS(7333), 1, + sym_escape_sequence, + ACTIONS(7335), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4031), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [189859] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(7337), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [189884] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(7339), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [189909] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(7341), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [189934] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7343), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [189959] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7345), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [189984] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(7347), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [190009] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7349), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [190034] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7351), 1, + anon_sym_SLASH, + ACTIONS(7353), 1, + sym_escape_sequence, + ACTIONS(7355), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3955), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [190059] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7357), 1, + anon_sym_PIPE, + ACTIONS(7359), 1, + sym_escape_sequence, + ACTIONS(7361), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3957), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [190084] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7363), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [190109] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5713), 1, + sym_escape_sequence, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7365), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3681), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [190134] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5707), 1, + sym_escape_sequence, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(7367), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [190159] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5701), 1, + sym_escape_sequence, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(7369), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [190184] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5719), 1, + sym_escape_sequence, + ACTIONS(5721), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7371), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3682), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [190209] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7373), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7375), 1, + sym_escape_sequence, + ACTIONS(7377), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4047), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [190234] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7379), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7381), 1, + sym_escape_sequence, + ACTIONS(7383), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4048), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [190259] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7385), 1, + anon_sym_SQUOTE, + ACTIONS(7387), 1, + sym_escape_sequence, + ACTIONS(7389), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4049), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [190284] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7391), 1, + anon_sym_DQUOTE, + ACTIONS(7393), 1, + sym_escape_sequence, + ACTIONS(7395), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4050), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [190309] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7397), 1, + anon_sym_RPAREN, + ACTIONS(7399), 1, + sym_escape_sequence, + ACTIONS(7401), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4100), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [190334] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7403), 1, + anon_sym_RBRACE, + ACTIONS(7405), 1, + sym_escape_sequence, + ACTIONS(7407), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4101), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [190359] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7409), 1, + anon_sym_GT, + ACTIONS(7411), 1, + sym_escape_sequence, + ACTIONS(7413), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3975), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [190384] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7415), 1, + anon_sym_RBRACK, + ACTIONS(7417), 1, + sym_escape_sequence, + ACTIONS(7419), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4102), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [190409] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7421), 1, + anon_sym_RBRACK, + ACTIONS(7423), 1, + sym_escape_sequence, + ACTIONS(7425), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3979), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [190434] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7427), 1, + anon_sym_RPAREN, + ACTIONS(7429), 1, + sym_escape_sequence, + ACTIONS(7431), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4092), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [190459] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7433), 1, + anon_sym_RBRACE, + ACTIONS(7435), 1, + sym_escape_sequence, + ACTIONS(7437), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4093), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [190484] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7439), 1, + anon_sym_RBRACK, + ACTIONS(7441), 1, + sym_escape_sequence, + ACTIONS(7443), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4094), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [190509] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7445), 1, + anon_sym_GT, + ACTIONS(7447), 1, + sym_escape_sequence, + ACTIONS(7449), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4095), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [190534] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7451), 1, + anon_sym_PIPE, + ACTIONS(7453), 1, + sym_escape_sequence, + ACTIONS(7455), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4096), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [190559] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7457), 1, + anon_sym_SLASH, + ACTIONS(7459), 1, + sym_escape_sequence, + ACTIONS(7461), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4097), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [190584] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7463), 1, + anon_sym_GT, + ACTIONS(7465), 1, + sym_escape_sequence, + ACTIONS(7467), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4103), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [190609] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7469), 1, + anon_sym_PIPE, + ACTIONS(7471), 1, + sym_escape_sequence, + ACTIONS(7473), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4104), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [190634] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7475), 1, + anon_sym_SLASH, + ACTIONS(7477), 1, + sym_escape_sequence, + ACTIONS(7479), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4105), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [190659] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(7481), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [190684] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(7483), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [190709] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7485), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [190734] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(7487), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [190759] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(7489), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [190784] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7491), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [190809] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7493), 1, + anon_sym_GT, + ACTIONS(7495), 1, + sym_escape_sequence, + ACTIONS(7497), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3677), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [190834] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7499), 1, + anon_sym_PIPE, + ACTIONS(7501), 1, + sym_escape_sequence, + ACTIONS(7503), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4071), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [190859] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7505), 1, + anon_sym_GT, + ACTIONS(7507), 1, + sym_escape_sequence, + ACTIONS(7509), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4072), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [190884] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7511), 1, + anon_sym_RBRACK, + ACTIONS(7513), 1, + sym_escape_sequence, + ACTIONS(7515), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4073), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [190909] = 7, + ACTIONS(5737), 1, anon_sym_POUND_LBRACE, ACTIONS(7517), 1, + anon_sym_RBRACE, + ACTIONS(7519), 1, sym_escape_sequence, - ACTIONS(7520), 1, - sym__quoted_content_i_parenthesis, + ACTIONS(7521), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4350), 2, + STATE(4074), 2, sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [203856] = 7, - ACTIONS(6936), 1, + aux_sym__quoted_i_curly_repeat1, + [190934] = 7, + ACTIONS(5745), 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(7525), 1, + sym_escape_sequence, + ACTIONS(7527), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4350), 2, + STATE(4075), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [203881] = 7, - ACTIONS(6834), 1, + [190959] = 7, + ACTIONS(5737), 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, + anon_sym_RBRACE, + ACTIONS(7531), 1, + sym_escape_sequence, + ACTIONS(7533), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4258), 2, + STATE(3980), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [203956] = 7, - ACTIONS(6858), 1, + aux_sym__quoted_i_curly_repeat1, + [190984] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(6944), 1, + ACTIONS(5719), 1, sym_escape_sequence, - ACTIONS(6946), 1, + ACTIONS(5721), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(7531), 1, + ACTIONS(7535), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4260), 2, + STATE(3682), 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, + [191009] = 7, + ACTIONS(5745), 1, anon_sym_POUND_LBRACE, ACTIONS(7537), 1, - anon_sym_RBRACK, + anon_sym_RPAREN, 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_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4330), 2, + STATE(3981), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [204281] = 7, - ACTIONS(7590), 1, - anon_sym_GT, - ACTIONS(7592), 1, + [191034] = 7, + ACTIONS(5661), 1, anon_sym_POUND_LBRACE, - ACTIONS(7595), 1, + ACTIONS(5713), 1, sym_escape_sequence, - ACTIONS(7598), 1, - sym__quoted_content_i_angle, + ACTIONS(5715), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7543), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4368), 2, + STATE(3681), 2, sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [204306] = 7, - ACTIONS(7601), 1, - anon_sym_SLASH, - ACTIONS(7603), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [191059] = 7, + ACTIONS(5617), 1, anon_sym_POUND_LBRACE, - ACTIONS(7606), 1, + ACTIONS(5707), 1, sym_escape_sequence, - ACTIONS(7609), 1, - sym__quoted_content_i_slash, + ACTIONS(5709), 1, + sym__quoted_content_i_single, + ACTIONS(7545), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4369), 2, + STATE(3680), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [191084] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(7547), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [204331] = 7, - ACTIONS(7612), 1, - anon_sym_RBRACE, - ACTIONS(7614), 1, + [191109] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(7617), 1, + ACTIONS(5701), 1, sym_escape_sequence, - ACTIONS(7620), 1, - sym__quoted_content_i_curly, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(7549), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4370), 2, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [191134] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(7551), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [191159] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7553), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7555), 1, + sym_escape_sequence, + ACTIONS(7557), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4083), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [191184] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7559), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7561), 1, + sym_escape_sequence, + ACTIONS(7563), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4085), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [191209] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7565), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [191234] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(7567), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [204356] = 7, - ACTIONS(6834), 1, + [191259] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(7569), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [191284] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7571), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [191309] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(7573), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [191334] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(7575), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [191359] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7577), 1, + anon_sym_SQUOTE, + ACTIONS(7579), 1, + sym_escape_sequence, + ACTIONS(7581), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4086), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [191384] = 7, + ACTIONS(5647), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7583), 1, + anon_sym_DQUOTE, + ACTIONS(7585), 1, + sym_escape_sequence, + ACTIONS(7587), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4088), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [191409] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7589), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [191434] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(7591), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [191459] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(7593), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [191484] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7595), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [191509] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(7597), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [191534] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(7599), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [191559] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5836), 1, + sym_escape_sequence, + ACTIONS(5838), 1, + sym__quoted_content_i_slash, + ACTIONS(7601), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3918), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [191584] = 7, + ACTIONS(5633), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5830), 1, + sym_escape_sequence, + ACTIONS(5832), 1, + sym__quoted_content_i_bar, + ACTIONS(7603), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3872), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [191609] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7605), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [191634] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(7607), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [191659] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5824), 1, + sym_escape_sequence, + ACTIONS(5826), 1, + sym__quoted_content_i_angle, + ACTIONS(7609), 1, + anon_sym_GT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3923), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [191684] = 7, + ACTIONS(5737), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(7611), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [191709] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7613), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [191734] = 7, + ACTIONS(5725), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5818), 1, + sym_escape_sequence, + ACTIONS(5820), 1, + sym__quoted_content_i_square, + ACTIONS(7615), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3928), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [191759] = 7, + ACTIONS(5625), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7617), 1, + anon_sym_SLASH, + ACTIONS(7619), 1, + sym_escape_sequence, + ACTIONS(7621), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4106), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [191784] = 7, + ACTIONS(5633), 1, anon_sym_POUND_LBRACE, ACTIONS(7623), 1, - anon_sym_DQUOTE, + anon_sym_PIPE, ACTIONS(7625), 1, sym_escape_sequence, ACTIONS(7627), 1, - sym__quoted_content_i_double, + sym__quoted_content_i_bar, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4382), 2, + STATE(4107), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [204381] = 7, - ACTIONS(7629), 1, - anon_sym_RBRACK, - ACTIONS(7631), 1, + aux_sym__quoted_i_bar_repeat1, + [191809] = 7, + ACTIONS(5737), 1, anon_sym_POUND_LBRACE, - ACTIONS(7634), 1, + ACTIONS(5812), 1, + sym_escape_sequence, + ACTIONS(5814), 1, + sym__quoted_content_i_curly, + ACTIONS(7629), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3929), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [191834] = 7, + ACTIONS(5745), 1, + anon_sym_POUND_LBRACE, + ACTIONS(5806), 1, + sym_escape_sequence, + ACTIONS(5808), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7631), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3930), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [191859] = 7, + ACTIONS(5775), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7633), 1, + anon_sym_GT, + ACTIONS(7635), 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_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4403), 2, + STATE(4108), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [204481] = 7, - ACTIONS(6818), 1, + [191884] = 7, + ACTIONS(5725), 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, + ACTIONS(7639), 1, anon_sym_RBRACK, - ACTIONS(7672), 1, + ACTIONS(7641), 1, sym_escape_sequence, - ACTIONS(7674), 1, + ACTIONS(7643), 1, sym__quoted_content_i_square, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4406), 2, + STATE(4109), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [204556] = 7, - ACTIONS(6842), 1, + [191909] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(7676), 1, - anon_sym_SQUOTE, - ACTIONS(7678), 1, + ACTIONS(5701), 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, + ACTIONS(5703), 1, sym__quoted_content_i_double, - ACTIONS(7694), 1, + ACTIONS(7645), 1, anon_sym_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4254), 2, + STATE(3673), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [204656] = 7, - ACTIONS(6842), 1, + [191934] = 7, + ACTIONS(5737), 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, + ACTIONS(7647), 1, anon_sym_RBRACE, + ACTIONS(7649), 1, + sym_escape_sequence, + ACTIONS(7651), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4370), 2, + STATE(4111), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [205231] = 7, - ACTIONS(6826), 1, + [191959] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(6828), 1, + ACTIONS(5719), 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, + ACTIONS(5721), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(7826), 1, + ACTIONS(7653), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4260), 2, + STATE(3682), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [205606] = 7, - ACTIONS(6842), 1, + [191984] = 7, + ACTIONS(5661), 1, anon_sym_POUND_LBRACE, - ACTIONS(6896), 1, + ACTIONS(5713), 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, + ACTIONS(5715), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(7830), 1, + ACTIONS(7655), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4258), 2, + STATE(3681), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [205656] = 7, - ACTIONS(6842), 1, + [192009] = 7, + ACTIONS(5745), 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, + ACTIONS(7657), 1, anon_sym_RPAREN, - ACTIONS(7886), 1, + ACTIONS(7659), 1, sym_escape_sequence, - ACTIONS(7888), 1, + ACTIONS(7661), 1, sym__quoted_content_i_parenthesis, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4469), 2, + STATE(4112), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [205981] = 7, - ACTIONS(6842), 1, + [192034] = 7, + ACTIONS(5617), 1, anon_sym_POUND_LBRACE, - ACTIONS(6896), 1, + ACTIONS(5707), 1, sym_escape_sequence, - ACTIONS(6898), 1, + ACTIONS(5709), 1, sym__quoted_content_i_single, - ACTIONS(7890), 1, + ACTIONS(7663), 1, anon_sym_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4256), 2, + STATE(3680), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [206006] = 7, - ACTIONS(6834), 1, + [192059] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(7892), 1, + ACTIONS(7665), 1, anon_sym_DQUOTE, - ACTIONS(7894), 1, + ACTIONS(7667), 1, sym_escape_sequence, - ACTIONS(7896), 1, + ACTIONS(7669), 1, sym__quoted_content_i_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4454), 2, + STATE(4120), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [206031] = 7, - ACTIONS(6842), 1, + [192084] = 7, + ACTIONS(5669), 1, anon_sym_POUND_LBRACE, - ACTIONS(7898), 1, - anon_sym_SQUOTE, - ACTIONS(7900), 1, + ACTIONS(5719), 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, + ACTIONS(5721), 1, sym__quoted_content_i_heredoc_double, + ACTIONS(7671), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4457), 2, + STATE(3682), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [206106] = 7, - ACTIONS(6834), 1, + [192109] = 7, + ACTIONS(5661), 1, anon_sym_POUND_LBRACE, - ACTIONS(6890), 1, + ACTIONS(5713), 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, + ACTIONS(5715), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(7970), 1, + ACTIONS(7673), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4258), 2, + STATE(3681), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [206506] = 7, - ACTIONS(6858), 1, + [192134] = 7, + ACTIONS(5617), 1, anon_sym_POUND_LBRACE, - ACTIONS(6944), 1, + ACTIONS(5707), 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, + ACTIONS(5709), 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, + ACTIONS(7675), 1, anon_sym_SQUOTE, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4256), 2, + STATE(3680), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [206656] = 7, - ACTIONS(6834), 1, + [192159] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(6890), 1, - sym_escape_sequence, - ACTIONS(6892), 1, - sym__quoted_content_i_double, - ACTIONS(7992), 1, + ACTIONS(7677), 1, anon_sym_DQUOTE, + ACTIONS(7679), 1, + sym_escape_sequence, + ACTIONS(7681), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4254), 2, + STATE(4134), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [206681] = 7, - ACTIONS(6818), 1, + [192184] = 7, + ACTIONS(5617), 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, + ACTIONS(7683), 1, anon_sym_SQUOTE, - ACTIONS(7998), 1, + ACTIONS(7685), 1, sym_escape_sequence, - ACTIONS(8000), 1, + ACTIONS(7687), 1, sym__quoted_content_i_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4462), 2, + STATE(4129), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [206731] = 7, - ACTIONS(6920), 1, + [192209] = 7, + ACTIONS(5661), 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, + ACTIONS(7689), 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, + ACTIONS(7691), 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, + ACTIONS(7693), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4489), 2, + STATE(4128), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [207431] = 7, - ACTIONS(6842), 1, + [192234] = 7, + ACTIONS(5669), 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, + ACTIONS(7695), 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, + ACTIONS(7697), 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, + ACTIONS(7699), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4496), 2, + STATE(4127), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [207606] = 7, - ACTIONS(6850), 1, + [192259] = 7, + ACTIONS(5647), 1, anon_sym_POUND_LBRACE, - ACTIONS(8144), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8146), 1, + ACTIONS(5701), 1, sym_escape_sequence, - ACTIONS(8148), 1, + ACTIONS(5703), 1, + sym__quoted_content_i_double, + ACTIONS(7701), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(3673), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [192284] = 7, + ACTIONS(5669), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7703), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7705), 1, + sym_escape_sequence, + ACTIONS(7707), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4122), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [192309] = 7, + ACTIONS(5617), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7709), 1, + anon_sym_SQUOTE, + ACTIONS(7711), 1, + sym_escape_sequence, + ACTIONS(7713), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4125), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [192334] = 7, + ACTIONS(5661), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7715), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7717), 1, + sym_escape_sequence, + ACTIONS(7719), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - STATE(4497), 2, + STATE(4123), 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, + [192359] = 8, 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, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, anon_sym_SEMI, - anon_sym_after, - anon_sym_catch, - anon_sym_else, + ACTIONS(7723), 1, 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, + STATE(139), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 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, + STATE(4236), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [213554] = 5, + [192385] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(9090), 1, + ACTIONS(7725), 1, anon_sym_COMMA, - STATE(4760), 1, + STATE(4139), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(3873), 3, + aux_sym__terminator_token1, + ACTIONS(3192), 3, anon_sym_RPAREN, - anon_sym_DASH_GT, anon_sym_when, - [213574] = 8, + anon_sym_DASH_GT, + [192405] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(989), 1, + ACTIONS(5457), 1, + aux_sym__terminator_token1, + ACTIONS(5463), 1, anon_sym_RPAREN, - ACTIONS(4488), 1, + ACTIONS(7728), 1, anon_sym_SEMI, - STATE(158), 1, + STATE(128), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4759), 1, + STATE(4140), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [213600] = 5, + [192431] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(9094), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(898), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4162), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192457] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3941), 1, + anon_sym_RPAREN, + ACTIONS(5481), 1, + aux_sym__terminator_token1, + ACTIONS(7733), 1, + anon_sym_SEMI, + STATE(631), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4142), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192483] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4243), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192509] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(894), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4149), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192535] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7736), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4151), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192561] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1751), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4153), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192587] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1691), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4159), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192613] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1691), 1, + anon_sym_RPAREN, + ACTIONS(3725), 1, + anon_sym_SEMI, + STATE(351), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192639] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1691), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192665] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7738), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4161), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192691] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7738), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192717] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7740), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4183), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192743] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1719), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192769] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4117), 1, + anon_sym_RPAREN, + ACTIONS(5473), 1, + aux_sym__terminator_token1, + ACTIONS(7742), 1, + anon_sym_SEMI, + STATE(576), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192795] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1719), 1, + anon_sym_RPAREN, + ACTIONS(7745), 1, + anon_sym_SEMI, + STATE(412), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192821] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7747), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192847] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1531), 1, + anon_sym_RPAREN, + ACTIONS(7749), 1, + anon_sym_SEMI, + STATE(439), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192873] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1725), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4192), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192899] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1531), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192925] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1725), 1, + anon_sym_RPAREN, + ACTIONS(3751), 1, + anon_sym_SEMI, + STATE(425), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192951] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7751), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [192977] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1725), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193003] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7753), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193029] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7753), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4169), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193055] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7755), 1, anon_sym_COMMA, - STATE(4764), 1, - aux_sym__stab_clause_arguments_repeat1, + STATE(4165), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(9092), 3, + aux_sym__terminator_token1, + ACTIONS(3422), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [193075] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1751), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193101] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7758), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4227), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193127] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(938), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4184), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193153] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7760), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193179] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1751), 1, + anon_sym_RPAREN, + ACTIONS(3680), 1, + anon_sym_SEMI, + STATE(419), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193205] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7762), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4193), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193231] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(902), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4233), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193257] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7764), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4163), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193283] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7766), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193309] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7768), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4230), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193335] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1695), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4199), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193361] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1717), 1, + anon_sym_RPAREN, + ACTIONS(7770), 1, + anon_sym_SEMI, + STATE(373), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193387] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1695), 1, + anon_sym_RPAREN, + ACTIONS(3733), 1, + anon_sym_SEMI, + STATE(400), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193413] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7772), 1, + anon_sym_COMMA, + STATE(4272), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3445), 3, anon_sym_RPAREN, - anon_sym_DASH_GT, anon_sym_when, - [213620] = 8, + anon_sym_DASH_GT, + [193433] = 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, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1727), 1, anon_sym_RPAREN, - ACTIONS(4526), 1, + ACTIONS(7731), 1, anon_sym_SEMI, - STATE(166), 1, + STATE(128), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4761), 1, + STATE(4140), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [213672] = 8, + [193459] = 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1727), 1, anon_sym_RPAREN, - ACTIONS(4526), 1, + ACTIONS(7774), 1, anon_sym_SEMI, - STATE(166), 1, + STATE(371), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4793), 1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193485] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7776), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4210), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193511] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7776), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193537] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1695), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [213750] = 8, + [193563] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(1003), 1, + ACTIONS(7778), 1, + anon_sym_COMMA, + STATE(4185), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3192), 3, anon_sym_RPAREN, - ACTIONS(9100), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [193583] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1321), 1, + anon_sym_RPAREN, + ACTIONS(4282), 1, + aux_sym__terminator_token1, + ACTIONS(4285), 1, anon_sym_SEMI, - STATE(167), 1, + STATE(349), 1, sym__terminator, - STATE(1306), 1, + STATE(1033), 1, aux_sym__terminator_repeat1, - STATE(4793), 1, + STATE(4142), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193609] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7781), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4237), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193635] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1321), 1, + anon_sym_end, + ACTIONS(4119), 1, + aux_sym__terminator_token1, + ACTIONS(4122), 1, + anon_sym_SEMI, + STATE(348), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4219), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193661] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(914), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4260), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [213776] = 8, + [193687] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(9086), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, anon_sym_SEMI, - ACTIONS(9102), 1, + ACTIONS(7783), 1, anon_sym_end, - STATE(193), 1, + STATE(139), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4803), 1, + STATE(4201), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [213802] = 8, + [193713] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(9086), 1, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1729), 1, + anon_sym_RPAREN, + ACTIONS(7785), 1, anon_sym_SEMI, - ACTIONS(9102), 1, - anon_sym_end, - STATE(193), 1, + STATE(428), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4738), 1, - aux_sym_anonymous_function_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [213828] = 8, + [193739] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(9086), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1729), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, anon_sym_SEMI, - ACTIONS(9104), 1, - anon_sym_end, - STATE(193), 1, + STATE(128), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4777), 1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193765] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7783), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [213854] = 8, + [193791] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1603), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4214), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193817] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7787), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193843] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(910), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4250), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193869] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(934), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4166), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193895] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1677), 1, + anon_sym_RPAREN, + ACTIONS(7789), 1, + anon_sym_SEMI, + STATE(392), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193921] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1677), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193947] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7781), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193973] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7791), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [193999] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7793), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194025] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(9), 1, - anon_sym_LF, - ACTIONS(2290), 1, + aux_sym__terminator_token1, + ACTIONS(1705), 1, ts_builtin_sym_end, - ACTIONS(5268), 1, + ACTIONS(7795), 1, anon_sym_SEMI, - STATE(595), 1, + STATE(366), 1, sym__terminator, - STATE(1317), 1, + STATE(1028), 1, aux_sym__terminator_repeat1, - STATE(4786), 1, + STATE(4253), 1, aux_sym_source_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [213880] = 8, + [194051] = 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, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(930), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [213978] = 8, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4211), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194077] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(9086), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1717), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, anon_sym_SEMI, - ACTIONS(9111), 1, - anon_sym_end, - STATE(193), 1, + STATE(128), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4803), 1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194103] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1327), 1, + anon_sym_RPAREN, + ACTIONS(7797), 1, + aux_sym__terminator_token1, + ACTIONS(7800), 1, + anon_sym_SEMI, + STATE(346), 1, + sym__terminator, + STATE(1033), 1, + aux_sym__terminator_repeat1, + STATE(4142), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194129] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7803), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4213), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214004] = 8, + [194155] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1774), 1, - anon_sym_end, - ACTIONS(9113), 1, - anon_sym_LF, - ACTIONS(9116), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1567), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4221), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194181] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1567), 1, + anon_sym_RPAREN, + ACTIONS(3741), 1, anon_sym_SEMI, STATE(441), 1, sym__terminator, - STATE(1327), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4823), 1, - aux_sym_source_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214030] = 8, + [194207] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(987), 1, - anon_sym_RPAREN, - ACTIONS(4539), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 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, + ACTIONS(7805), 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, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4793), 1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194233] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1567), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214564] = 8, + [194259] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7807), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4222), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194285] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7807), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194311] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1689), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194337] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1689), 1, + anon_sym_RPAREN, + ACTIONS(7809), 1, + anon_sym_SEMI, + STATE(416), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194363] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7768), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194389] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7813), 1, + anon_sym_COMMA, + STATE(4223), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(7811), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [194409] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1327), 1, + anon_sym_end, + ACTIONS(7815), 1, + aux_sym__terminator_token1, + ACTIONS(7818), 1, + anon_sym_SEMI, + STATE(350), 1, + sym__terminator, + STATE(1031), 1, + aux_sym__terminator_repeat1, + STATE(4219), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194435] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3941), 1, + anon_sym_end, + ACTIONS(5481), 1, + aux_sym__terminator_token1, + ACTIONS(7821), 1, + anon_sym_SEMI, + STATE(823), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4219), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194461] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1755), 1, + anon_sym_RPAREN, + ACTIONS(7824), 1, + anon_sym_SEMI, + STATE(359), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194487] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1755), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194513] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7826), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194539] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7828), 1, + anon_sym_COMMA, + STATE(4185), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5407), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [194559] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7830), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4174), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194585] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1731), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194611] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1731), 1, + anon_sym_RPAREN, + ACTIONS(7832), 1, + anon_sym_SEMI, + STATE(431), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194637] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7834), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194663] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7830), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194689] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7834), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4202), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194715] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7836), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194741] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1683), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194767] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1683), 1, + anon_sym_RPAREN, + ACTIONS(7838), 1, + anon_sym_SEMI, + STATE(405), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194793] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1559), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194819] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1559), 1, + anon_sym_RPAREN, + ACTIONS(3698), 1, + anon_sym_SEMI, + STATE(389), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194845] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7840), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4216), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194871] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7842), 1, + aux_sym__terminator_token1, + ACTIONS(7845), 1, + anon_sym_SEMI, + ACTIONS(7848), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194897] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7850), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194923] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(922), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4270), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194949] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7852), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4200), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [194975] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(906), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4261), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195001] = 8, ACTIONS(5), 1, sym_comment, ACTIONS(9), 1, - anon_sym_LF, - ACTIONS(2342), 1, + aux_sym__terminator_token1, + ACTIONS(1693), 1, ts_builtin_sym_end, - ACTIONS(9137), 1, + ACTIONS(4385), 1, anon_sym_SEMI, - STATE(517), 1, + STATE(414), 1, sym__terminator, - STATE(1317), 1, + STATE(1028), 1, aux_sym__terminator_repeat1, - STATE(4786), 1, + STATE(4253), 1, aux_sym_source_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214590] = 8, + [195027] = 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, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1603), 1, anon_sym_RPAREN, - ACTIONS(4666), 1, + ACTIONS(3714), 1, anon_sym_SEMI, - STATE(163), 1, + STATE(406), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4763), 1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195053] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1603), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214668] = 8, + [195079] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(9086), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, anon_sym_SEMI, - ACTIONS(9141), 1, + ACTIONS(7854), 1, anon_sym_end, - STATE(193), 1, + STATE(139), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4803), 1, + STATE(4262), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214694] = 8, + [195105] = 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, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1757), 1, anon_sym_RPAREN, - ACTIONS(9145), 1, + ACTIONS(7731), 1, anon_sym_SEMI, - STATE(142), 1, + STATE(128), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4793), 1, + STATE(4205), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214746] = 8, + [195131] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1599), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4231), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195157] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(926), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4268), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195183] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1757), 1, + anon_sym_RPAREN, + ACTIONS(3704), 1, + anon_sym_SEMI, + STATE(418), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195209] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1649), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195235] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1757), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195261] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7856), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4138), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195287] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1649), 1, + anon_sym_RPAREN, + ACTIONS(7858), 1, + anon_sym_SEMI, + STATE(432), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195313] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3939), 1, ts_builtin_sym_end, - ACTIONS(6607), 1, - anon_sym_LF, - ACTIONS(9147), 1, + ACTIONS(5481), 1, + aux_sym__terminator_token1, + ACTIONS(7860), 1, anon_sym_SEMI, - STATE(940), 1, + STATE(688), 1, sym__terminator, - STATE(1332), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4786), 1, + STATE(4253), 1, aux_sym_source_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214772] = 8, + [195339] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(983), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1559), 1, anon_sym_RPAREN, - ACTIONS(4534), 1, + ACTIONS(7731), 1, anon_sym_SEMI, - STATE(180), 1, + STATE(128), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4790), 1, + STATE(4249), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214798] = 8, + [195365] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(9086), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, anon_sym_SEMI, - ACTIONS(9150), 1, + ACTIONS(7863), 1, anon_sym_end, - STATE(193), 1, + STATE(139), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4797), 1, + STATE(4236), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214824] = 8, + [195391] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(1043), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, anon_sym_SEMI, - STATE(173), 1, + ACTIONS(7863), 1, + anon_sym_end, + STATE(139), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4800), 1, + STATE(4156), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195417] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1565), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4274), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214850] = 8, + [195443] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(1043), 1, - anon_sym_RPAREN, - ACTIONS(4577), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, anon_sym_SEMI, - STATE(173), 1, + ACTIONS(7865), 1, + anon_sym_end, + STATE(139), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4793), 1, + STATE(4255), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195469] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1565), 1, + anon_sym_RPAREN, + ACTIONS(3755), 1, + anon_sym_SEMI, + STATE(367), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195495] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1663), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214876] = 8, + [195521] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1768), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1565), 1, anon_sym_RPAREN, - ACTIONS(5062), 1, - anon_sym_LF, - ACTIONS(5065), 1, + ACTIONS(7731), 1, anon_sym_SEMI, - STATE(460), 1, + STATE(128), 1, sym__terminator, - STATE(1319), 1, + STATE(1026), 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, + STATE(4140), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214928] = 8, + [195547] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5362), 1, - anon_sym_RPAREN, - ACTIONS(9154), 1, - anon_sym_LF, - ACTIONS(9157), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, anon_sym_SEMI, - STATE(191), 1, + ACTIONS(7867), 1, + anon_sym_end, + STATE(139), 1, sym__terminator, - STATE(1306), 1, + STATE(1026), 1, aux_sym__terminator_repeat1, - STATE(4793), 1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195573] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7867), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4195), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195599] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7869), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4228), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195625] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1721), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4225), 1, aux_sym_block_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - [214954] = 5, + [195651] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1663), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4180), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195677] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1721), 1, + anon_sym_RPAREN, + ACTIONS(3712), 1, + anon_sym_SEMI, + STATE(426), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195703] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1721), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195729] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1599), 1, + anon_sym_RPAREN, + ACTIONS(3747), 1, + anon_sym_SEMI, + STATE(403), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195755] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1599), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195781] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7871), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4236), 1, + aux_sym_anonymous_function_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195807] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7772), 1, anon_sym_COMMA, - STATE(4794), 1, + STATE(4139), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(3887), 3, + aux_sym__terminator_token1, + ACTIONS(3451), 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, + [195827] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_LF, - ACTIONS(9086), 1, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1663), 1, + anon_sym_RPAREN, + ACTIONS(3729), 1, anon_sym_SEMI, - ACTIONS(9163), 1, - anon_sym_end, - STATE(193), 1, + STATE(423), 1, sym__terminator, - STATE(1306), 1, + STATE(1029), 1, aux_sym__terminator_repeat1, - STATE(4803), 1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195853] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(1585), 1, + anon_sym_RPAREN, + ACTIONS(7731), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4140), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195879] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1054), 1, + aux_sym__terminator_token1, + ACTIONS(1585), 1, + anon_sym_RPAREN, + ACTIONS(7873), 1, + anon_sym_SEMI, + STATE(375), 1, + sym__terminator, + STATE(1029), 1, + aux_sym__terminator_repeat1, + STATE(4154), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + [195905] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(698), 1, + aux_sym__terminator_token1, + ACTIONS(7721), 1, + anon_sym_SEMI, + ACTIONS(7723), 1, + anon_sym_end, + STATE(139), 1, + sym__terminator, + STATE(1026), 1, + aux_sym__terminator_repeat1, + STATE(4271), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + [195931] = 6, + ACTIONS(7875), 1, 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, + ACTIONS(7877), 1, sym_escape_sequence, - ACTIONS(9253), 1, + ACTIONS(7879), 1, sym__quoted_content_curly, - STATE(5152), 1, + STATE(4544), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, 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, + [195952] = 6, + ACTIONS(7881), 1, anon_sym_RPAREN, - ACTIONS(9281), 1, + ACTIONS(7883), 1, sym_escape_sequence, - ACTIONS(9283), 1, + ACTIONS(7885), 1, sym__quoted_content_parenthesis, - STATE(5031), 1, + STATE(4499), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216558] = 6, - ACTIONS(9285), 1, + [195973] = 6, + ACTIONS(7887), 1, anon_sym_RBRACK, - ACTIONS(9287), 1, + ACTIONS(7889), 1, sym_escape_sequence, - ACTIONS(9289), 1, + ACTIONS(7891), 1, sym__quoted_content_square, - STATE(4869), 1, + STATE(4304), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216579] = 6, - ACTIONS(9291), 1, - anon_sym_RBRACE, - ACTIONS(9293), 1, + [195994] = 6, + ACTIONS(7893), 1, + anon_sym_GT, + ACTIONS(7895), 1, sym_escape_sequence, - ACTIONS(9295), 1, + ACTIONS(7897), 1, + sym__quoted_content_angle, + STATE(4305), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196015] = 6, + ACTIONS(7899), 1, + anon_sym_PIPE, + ACTIONS(7901), 1, + sym_escape_sequence, + ACTIONS(7903), 1, + sym__quoted_content_bar, + STATE(4306), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196036] = 6, + ACTIONS(7905), 1, + anon_sym_SLASH, + ACTIONS(7907), 1, + sym_escape_sequence, + ACTIONS(7909), 1, + sym__quoted_content_slash, + STATE(4307), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196057] = 6, + ACTIONS(7911), 1, + anon_sym_PIPE, + ACTIONS(7913), 1, + sym_escape_sequence, + ACTIONS(7915), 1, + sym__quoted_content_bar, + STATE(4614), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196078] = 6, + ACTIONS(7917), 1, + anon_sym_GT, + ACTIONS(7919), 1, + sym_escape_sequence, + ACTIONS(7921), 1, + sym__quoted_content_angle, + STATE(4613), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196099] = 6, + ACTIONS(7923), 1, + anon_sym_RBRACK, + ACTIONS(7925), 1, + sym_escape_sequence, + ACTIONS(7927), 1, + sym__quoted_content_square, + STATE(4611), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196120] = 6, + ACTIONS(7929), 1, + anon_sym_RBRACE, + ACTIONS(7931), 1, + sym_escape_sequence, + ACTIONS(7933), 1, sym__quoted_content_curly, - STATE(4911), 1, + STATE(4606), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216600] = 6, - ACTIONS(9297), 1, + [196141] = 6, + ACTIONS(7935), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9299), 1, + ACTIONS(7937), 1, sym_escape_sequence, - ACTIONS(9301), 1, + ACTIONS(7939), 1, sym__quoted_content_heredoc_double, - STATE(4898), 1, + STATE(4471), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216621] = 6, - ACTIONS(9303), 1, + [196162] = 6, + ACTIONS(7941), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9305), 1, + ACTIONS(7943), 1, sym_escape_sequence, - ACTIONS(9307), 1, + ACTIONS(7945), 1, sym__quoted_content_heredoc_single, - STATE(4897), 1, + STATE(4470), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216642] = 6, - ACTIONS(9309), 1, + [196183] = 6, + ACTIONS(7947), 1, anon_sym_SQUOTE, - ACTIONS(9311), 1, + ACTIONS(7949), 1, sym_escape_sequence, - ACTIONS(9313), 1, + ACTIONS(7951), 1, sym__quoted_content_single, - STATE(4893), 1, + STATE(4435), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216663] = 6, - ACTIONS(9315), 1, + [196204] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7953), 1, + anon_sym_COMMA, + STATE(4659), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(7955), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [196223] = 6, + ACTIONS(7957), 1, anon_sym_DQUOTE, - ACTIONS(9317), 1, + ACTIONS(7959), 1, sym_escape_sequence, - ACTIONS(9319), 1, + ACTIONS(7961), 1, sym__quoted_content_double, - STATE(4879), 1, + STATE(4433), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, 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, + [196244] = 6, + ACTIONS(7963), 1, anon_sym_PIPE, - ACTIONS(9335), 1, + ACTIONS(7965), 1, sym_escape_sequence, - ACTIONS(9337), 1, + ACTIONS(7967), 1, sym__quoted_content_bar, - STATE(4856), 1, + STATE(4574), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216747] = 6, - ACTIONS(9339), 1, - anon_sym_RPAREN, - ACTIONS(9341), 1, + [196265] = 6, + ACTIONS(7969), 1, + anon_sym_GT, + ACTIONS(7971), 1, sym_escape_sequence, - ACTIONS(9343), 1, - sym__quoted_content_parenthesis, - STATE(4857), 1, - aux_sym__quoted_parenthesis_repeat1, + ACTIONS(7973), 1, + sym__quoted_content_angle, + STATE(4430), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216768] = 6, - ACTIONS(9345), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9347), 1, + [196286] = 6, + ACTIONS(7975), 1, + anon_sym_RBRACK, + ACTIONS(7977), 1, sym_escape_sequence, - ACTIONS(9349), 1, + ACTIONS(7979), 1, + sym__quoted_content_square, + STATE(4428), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196307] = 6, + ACTIONS(7981), 1, + anon_sym_RBRACE, + ACTIONS(7983), 1, + sym_escape_sequence, + ACTIONS(7985), 1, + sym__quoted_content_curly, + STATE(4315), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196328] = 6, + ACTIONS(7987), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7989), 1, + sym_escape_sequence, + ACTIONS(7991), 1, + sym__quoted_content_heredoc_double, + STATE(4424), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196349] = 6, + ACTIONS(7993), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7995), 1, + sym_escape_sequence, + ACTIONS(7997), 1, sym__quoted_content_heredoc_single, - STATE(5039), 1, + STATE(4423), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216789] = 6, + [196370] = 6, + ACTIONS(7999), 1, + anon_sym_RPAREN, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196391] = 6, + ACTIONS(8005), 1, + anon_sym_DQUOTE, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196412] = 6, + ACTIONS(8011), 1, + anon_sym_SQUOTE, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196433] = 6, + ACTIONS(8017), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196454] = 6, + ACTIONS(8023), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196475] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8029), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196496] = 6, + ACTIONS(8031), 1, + anon_sym_RBRACK, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196517] = 6, + ACTIONS(8037), 1, + anon_sym_GT, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196538] = 6, + ACTIONS(8043), 1, + anon_sym_PIPE, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196559] = 6, + ACTIONS(8049), 1, + anon_sym_SLASH, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196580] = 6, + ACTIONS(8055), 1, + anon_sym_SQUOTE, + ACTIONS(8057), 1, + sym_escape_sequence, + ACTIONS(8059), 1, + sym__quoted_content_single, + STATE(4300), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196601] = 6, + ACTIONS(8061), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8063), 1, + sym_escape_sequence, + ACTIONS(8065), 1, + sym__quoted_content_heredoc_double, + STATE(4302), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196622] = 6, + ACTIONS(8067), 1, + anon_sym_RPAREN, + ACTIONS(8069), 1, + sym_escape_sequence, + ACTIONS(8071), 1, + sym__quoted_content_parenthesis, + STATE(4432), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196643] = 6, + ACTIONS(8073), 1, + anon_sym_SQUOTE, + ACTIONS(8075), 1, + sym_escape_sequence, + ACTIONS(8077), 1, + sym__quoted_content_single, + STATE(4388), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196664] = 6, + ACTIONS(8079), 1, + anon_sym_DQUOTE, + ACTIONS(8081), 1, + sym_escape_sequence, + ACTIONS(8083), 1, + sym__quoted_content_double, + STATE(4381), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196685] = 6, + ACTIONS(8085), 1, + anon_sym_RPAREN, + ACTIONS(8087), 1, + sym_escape_sequence, + ACTIONS(8089), 1, + sym__quoted_content_parenthesis, + STATE(4380), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196706] = 6, + ACTIONS(8091), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8093), 1, + sym_escape_sequence, + ACTIONS(8095), 1, + sym__quoted_content_heredoc_single, + STATE(4301), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196727] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8097), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196748] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8099), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196769] = 6, + ACTIONS(8101), 1, + anon_sym_DQUOTE, + ACTIONS(8103), 1, + sym_escape_sequence, + ACTIONS(8105), 1, + sym__quoted_content_double, + STATE(4299), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196790] = 6, + ACTIONS(8107), 1, + anon_sym_RPAREN, + ACTIONS(8109), 1, + sym_escape_sequence, + ACTIONS(8111), 1, + sym__quoted_content_parenthesis, + STATE(4298), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196811] = 6, + ACTIONS(8113), 1, + anon_sym_SLASH, + ACTIONS(8115), 1, + sym_escape_sequence, + ACTIONS(8117), 1, + sym__quoted_content_slash, + STATE(4587), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196832] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8119), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196853] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8121), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196874] = 6, + ACTIONS(8123), 1, + anon_sym_SLASH, + ACTIONS(8125), 1, + sym_escape_sequence, + ACTIONS(8127), 1, + sym__quoted_content_slash, + STATE(4655), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196895] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8129), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196916] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8131), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196937] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8133), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196958] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [196975] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8139), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [196996] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8141), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197017] = 6, + ACTIONS(8143), 1, + anon_sym_RPAREN, + ACTIONS(8145), 1, + sym_escape_sequence, + ACTIONS(8147), 1, + sym__quoted_content_parenthesis, + STATE(4522), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197038] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8149), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197059] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8151), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197080] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_square, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_RBRACK, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [197097] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8153), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197118] = 6, + ACTIONS(8155), 1, + anon_sym_DQUOTE, + ACTIONS(8157), 1, + sym_escape_sequence, + ACTIONS(8159), 1, + sym__quoted_content_double, + STATE(4520), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197139] = 6, + ACTIONS(8161), 1, + anon_sym_SQUOTE, + ACTIONS(8163), 1, + sym_escape_sequence, + ACTIONS(8165), 1, + sym__quoted_content_single, + STATE(4519), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197160] = 6, + ACTIONS(8167), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8169), 1, + sym_escape_sequence, + ACTIONS(8171), 1, + sym__quoted_content_heredoc_single, + STATE(4429), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197181] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8173), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197202] = 6, + ACTIONS(8175), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8177), 1, + sym_escape_sequence, + ACTIONS(8179), 1, + sym__quoted_content_heredoc_double, + STATE(4476), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197223] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8181), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197244] = 6, + ACTIONS(8183), 1, + anon_sym_RPAREN, + ACTIONS(8185), 1, + sym_escape_sequence, + ACTIONS(8187), 1, + sym__quoted_content_parenthesis, + STATE(4472), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197265] = 6, + ACTIONS(8189), 1, + anon_sym_DQUOTE, + ACTIONS(8191), 1, + sym_escape_sequence, + ACTIONS(8193), 1, + sym__quoted_content_double, + STATE(4478), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197286] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8195), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197307] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8197), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197328] = 6, + ACTIONS(8199), 1, + anon_sym_SQUOTE, + ACTIONS(8201), 1, + sym_escape_sequence, + ACTIONS(8203), 1, + sym__quoted_content_single, + STATE(4479), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197349] = 6, + ACTIONS(8205), 1, + anon_sym_RPAREN, + ACTIONS(8207), 1, + sym_escape_sequence, + ACTIONS(8209), 1, + sym__quoted_content_parenthesis, + STATE(4361), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197370] = 6, + ACTIONS(8211), 1, + anon_sym_DQUOTE, + ACTIONS(8213), 1, + sym_escape_sequence, + ACTIONS(8215), 1, + sym__quoted_content_double, + STATE(4362), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197391] = 6, + ACTIONS(8217), 1, + anon_sym_SQUOTE, + ACTIONS(8219), 1, + sym_escape_sequence, + ACTIONS(8221), 1, + sym__quoted_content_single, + STATE(4363), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197412] = 6, + ACTIONS(8223), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8225), 1, + sym_escape_sequence, + ACTIONS(8227), 1, + sym__quoted_content_heredoc_single, + STATE(4364), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197433] = 6, + ACTIONS(8229), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8231), 1, + sym_escape_sequence, + ACTIONS(8233), 1, + sym__quoted_content_heredoc_double, + STATE(4365), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197454] = 6, + ACTIONS(8235), 1, + anon_sym_RBRACE, + ACTIONS(8237), 1, + sym_escape_sequence, + ACTIONS(8239), 1, + sym__quoted_content_curly, + STATE(4366), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197475] = 6, + ACTIONS(8241), 1, + anon_sym_RBRACK, + ACTIONS(8243), 1, + sym_escape_sequence, + ACTIONS(8245), 1, + sym__quoted_content_square, + STATE(4367), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197496] = 6, + ACTIONS(8247), 1, + anon_sym_GT, + ACTIONS(8249), 1, + sym_escape_sequence, + ACTIONS(8251), 1, + sym__quoted_content_angle, + STATE(4368), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197517] = 6, + ACTIONS(8253), 1, + anon_sym_PIPE, + ACTIONS(8255), 1, + sym_escape_sequence, + ACTIONS(8257), 1, + sym__quoted_content_bar, + STATE(4369), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197538] = 6, + ACTIONS(8259), 1, + anon_sym_SLASH, + ACTIONS(8261), 1, + sym_escape_sequence, + ACTIONS(8263), 1, + sym__quoted_content_slash, + STATE(4370), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197559] = 6, + ACTIONS(8265), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8267), 1, + sym_escape_sequence, + ACTIONS(8269), 1, + sym__quoted_content_heredoc_single, + STATE(4496), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197580] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_angle, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_GT, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [197597] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(621), 1, + anon_sym_DQUOTE, + ACTIONS(623), 1, + anon_sym_SQUOTE, + STATE(3003), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [197616] = 6, + ACTIONS(8271), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8273), 1, + sym_escape_sequence, + ACTIONS(8275), 1, + sym__quoted_content_heredoc_double, + STATE(4497), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197637] = 6, + ACTIONS(8277), 1, + anon_sym_RBRACE, + ACTIONS(8279), 1, + sym_escape_sequence, + ACTIONS(8281), 1, + sym__quoted_content_curly, + STATE(4475), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197658] = 6, + ACTIONS(8283), 1, + anon_sym_RBRACE, + ACTIONS(8285), 1, + sym_escape_sequence, + ACTIONS(8287), 1, + sym__quoted_content_curly, + STATE(4512), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197679] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8289), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197700] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8291), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197721] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8293), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197742] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8295), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197763] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8297), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197784] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8299), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197805] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8301), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197826] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8303), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197847] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8305), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197868] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8307), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197889] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8309), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197910] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_bar, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_PIPE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [197927] = 6, + ACTIONS(8311), 1, + anon_sym_RBRACK, + ACTIONS(8313), 1, + sym_escape_sequence, + ACTIONS(8315), 1, + sym__quoted_content_square, + STATE(4518), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197948] = 6, + ACTIONS(8317), 1, + anon_sym_GT, + ACTIONS(8319), 1, + sym_escape_sequence, + ACTIONS(8321), 1, + sym__quoted_content_angle, + STATE(4523), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197969] = 6, + ACTIONS(8323), 1, + anon_sym_PIPE, + ACTIONS(8325), 1, + sym_escape_sequence, + ACTIONS(8327), 1, + sym__quoted_content_bar, + STATE(4524), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [197990] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_slash, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_SLASH, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [198007] = 6, + ACTIONS(8329), 1, + anon_sym_SLASH, + ACTIONS(8331), 1, + sym_escape_sequence, + ACTIONS(8333), 1, + sym__quoted_content_slash, + STATE(4525), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198028] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(8335), 1, + anon_sym_COMMA, + STATE(4165), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(1203), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [198047] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [198064] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8337), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198085] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8339), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198106] = 6, + ACTIONS(8341), 1, + anon_sym_RBRACK, + ACTIONS(8343), 1, + sym_escape_sequence, + ACTIONS(8345), 1, + sym__quoted_content_square, + STATE(4474), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198127] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(259), 1, + anon_sym_DQUOTE, + ACTIONS(261), 1, + anon_sym_SQUOTE, + STATE(1263), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [198146] = 6, + ACTIONS(8347), 1, + anon_sym_GT, + ACTIONS(8349), 1, + sym_escape_sequence, + ACTIONS(8351), 1, + sym__quoted_content_angle, + STATE(4473), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198167] = 6, + ACTIONS(8353), 1, + anon_sym_PIPE, + ACTIONS(8355), 1, + sym_escape_sequence, + ACTIONS(8357), 1, + sym__quoted_content_bar, + STATE(4468), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198188] = 6, + ACTIONS(8359), 1, + anon_sym_SLASH, + ACTIONS(8361), 1, + sym_escape_sequence, + ACTIONS(8363), 1, + sym__quoted_content_slash, + STATE(4463), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198209] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(568), 1, + anon_sym_SQUOTE, + STATE(2505), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [198228] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8365), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198249] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8367), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198270] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8369), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198291] = 6, + ACTIONS(8371), 1, + anon_sym_RPAREN, + ACTIONS(8373), 1, + sym_escape_sequence, + ACTIONS(8375), 1, + sym__quoted_content_parenthesis, + STATE(4407), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198312] = 6, + ACTIONS(8377), 1, + anon_sym_DQUOTE, + ACTIONS(8379), 1, + sym_escape_sequence, + ACTIONS(8381), 1, + sym__quoted_content_double, + STATE(4408), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198333] = 6, + ACTIONS(8383), 1, + anon_sym_SQUOTE, + ACTIONS(8385), 1, + sym_escape_sequence, + ACTIONS(8387), 1, + sym__quoted_content_single, + STATE(4409), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198354] = 6, + ACTIONS(8389), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8391), 1, + sym_escape_sequence, + ACTIONS(8393), 1, + sym__quoted_content_heredoc_single, + STATE(4410), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198375] = 6, + ACTIONS(8395), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8397), 1, + sym_escape_sequence, + ACTIONS(8399), 1, + sym__quoted_content_heredoc_double, + STATE(4411), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198396] = 6, + ACTIONS(8401), 1, + anon_sym_RBRACE, + ACTIONS(8403), 1, + sym_escape_sequence, + ACTIONS(8405), 1, + sym__quoted_content_curly, + STATE(4277), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198417] = 6, + ACTIONS(8407), 1, + anon_sym_RBRACK, + ACTIONS(8409), 1, + sym_escape_sequence, + ACTIONS(8411), 1, + sym__quoted_content_square, + STATE(4413), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198438] = 6, + ACTIONS(8413), 1, + anon_sym_GT, + ACTIONS(8415), 1, + sym_escape_sequence, + ACTIONS(8417), 1, + sym__quoted_content_angle, + STATE(4414), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198459] = 6, + ACTIONS(8419), 1, + anon_sym_PIPE, + ACTIONS(8421), 1, + sym_escape_sequence, + ACTIONS(8423), 1, + sym__quoted_content_bar, + STATE(4415), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198480] = 6, + ACTIONS(8425), 1, + anon_sym_SLASH, + ACTIONS(8427), 1, + sym_escape_sequence, + ACTIONS(8429), 1, + sym__quoted_content_slash, + STATE(4416), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198501] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8431), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198522] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8433), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198543] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8435), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198564] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8437), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198585] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8439), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198606] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8441), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198627] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8443), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198648] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8445), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198669] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8447), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198690] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8449), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198711] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8451), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198732] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8453), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198753] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8455), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198774] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8457), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198795] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8459), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198816] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8461), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198837] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1079), 1, + anon_sym_DQUOTE, + ACTIONS(1081), 1, + anon_sym_SQUOTE, + STATE(2356), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [198856] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8463), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198877] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_RPAREN, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [198894] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8465), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198915] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8467), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198936] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_curly, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_RBRACE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [198953] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8469), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198974] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8471), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [198995] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8473), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199016] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8475), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199037] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8477), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199058] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8479), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199079] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8481), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199100] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8483), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199121] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8485), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199142] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8487), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199163] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8489), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199184] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8491), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199205] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8493), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199226] = 6, + ACTIONS(8495), 1, + anon_sym_RPAREN, + ACTIONS(8497), 1, + sym_escape_sequence, + ACTIONS(8499), 1, + sym__quoted_content_parenthesis, + STATE(4325), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199247] = 6, + ACTIONS(8501), 1, + anon_sym_RPAREN, + ACTIONS(8503), 1, + sym_escape_sequence, + ACTIONS(8505), 1, + sym__quoted_content_parenthesis, + STATE(4453), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199268] = 6, + ACTIONS(8507), 1, + anon_sym_DQUOTE, + ACTIONS(8509), 1, + sym_escape_sequence, + ACTIONS(8511), 1, + sym__quoted_content_double, + STATE(4454), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199289] = 6, + ACTIONS(8513), 1, + anon_sym_SQUOTE, + ACTIONS(8515), 1, + sym_escape_sequence, + ACTIONS(8517), 1, + sym__quoted_content_single, + STATE(4455), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199310] = 6, + ACTIONS(8519), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8521), 1, + sym_escape_sequence, + ACTIONS(8523), 1, + sym__quoted_content_heredoc_single, + STATE(4456), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199331] = 6, + ACTIONS(8525), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8527), 1, + sym_escape_sequence, + ACTIONS(8529), 1, + sym__quoted_content_heredoc_double, + STATE(4457), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199352] = 6, + ACTIONS(8531), 1, + anon_sym_RBRACE, + ACTIONS(8533), 1, + sym_escape_sequence, + ACTIONS(8535), 1, + sym__quoted_content_curly, + STATE(4458), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199373] = 6, + ACTIONS(8537), 1, + anon_sym_RBRACK, + ACTIONS(8539), 1, + sym_escape_sequence, + ACTIONS(8541), 1, + sym__quoted_content_square, + STATE(4459), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199394] = 6, + ACTIONS(8543), 1, + anon_sym_GT, + ACTIONS(8545), 1, + sym_escape_sequence, + ACTIONS(8547), 1, + sym__quoted_content_angle, + STATE(4460), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199415] = 6, + ACTIONS(8549), 1, + anon_sym_PIPE, + ACTIONS(8551), 1, + sym_escape_sequence, + ACTIONS(8553), 1, + sym__quoted_content_bar, + STATE(4461), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199436] = 6, + ACTIONS(8555), 1, + anon_sym_SLASH, + ACTIONS(8557), 1, + sym_escape_sequence, + ACTIONS(8559), 1, + sym__quoted_content_slash, + STATE(4462), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199457] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8561), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199478] = 6, + ACTIONS(8563), 1, + anon_sym_SLASH, + ACTIONS(8565), 1, + sym_escape_sequence, + ACTIONS(8567), 1, + sym__quoted_content_slash, + STATE(4390), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199499] = 6, + ACTIONS(8569), 1, + anon_sym_PIPE, + ACTIONS(8571), 1, + sym_escape_sequence, + ACTIONS(8573), 1, + sym__quoted_content_bar, + STATE(4401), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199520] = 6, + ACTIONS(8575), 1, + anon_sym_GT, + ACTIONS(8577), 1, + sym_escape_sequence, + ACTIONS(8579), 1, + sym__quoted_content_angle, + STATE(4402), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199541] = 6, + ACTIONS(8581), 1, + anon_sym_RBRACK, + ACTIONS(8583), 1, + sym_escape_sequence, + ACTIONS(8585), 1, + sym__quoted_content_square, + STATE(4403), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199562] = 6, + ACTIONS(8587), 1, + anon_sym_RBRACE, + ACTIONS(8589), 1, + sym_escape_sequence, + ACTIONS(8591), 1, + sym__quoted_content_curly, + STATE(4404), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199583] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8593), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199604] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8595), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199625] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8597), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199646] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8599), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199667] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8601), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199688] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8603), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199709] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8605), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199730] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8607), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199751] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8609), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199772] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8611), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199793] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8613), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199814] = 6, + ACTIONS(8615), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8617), 1, + sym_escape_sequence, + ACTIONS(8619), 1, + sym__quoted_content_heredoc_double, + STATE(4405), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199835] = 6, + ACTIONS(8621), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8623), 1, + sym_escape_sequence, + ACTIONS(8625), 1, + sym__quoted_content_heredoc_single, + STATE(4406), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199856] = 6, + ACTIONS(8627), 1, + anon_sym_SQUOTE, + ACTIONS(8629), 1, + sym_escape_sequence, + ACTIONS(8631), 1, + sym__quoted_content_single, + STATE(4418), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199877] = 6, + ACTIONS(8633), 1, + anon_sym_DQUOTE, + ACTIONS(8635), 1, + sym_escape_sequence, + ACTIONS(8637), 1, + sym__quoted_content_double, + STATE(4420), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199898] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8639), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199919] = 6, + ACTIONS(8641), 1, + anon_sym_RPAREN, + ACTIONS(8643), 1, + sym_escape_sequence, + ACTIONS(8645), 1, + sym__quoted_content_parenthesis, + STATE(4421), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199940] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8647), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199961] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8649), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [199982] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8651), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200003] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8653), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200024] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8655), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200045] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8657), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200066] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8659), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200087] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8661), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200108] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8663), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200129] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8665), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200150] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8667), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200171] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8669), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200192] = 6, + ACTIONS(8671), 1, + anon_sym_RPAREN, + ACTIONS(8673), 1, + sym_escape_sequence, + ACTIONS(8675), 1, + sym__quoted_content_parenthesis, + STATE(4337), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200213] = 6, + ACTIONS(8677), 1, + anon_sym_RBRACE, + ACTIONS(8679), 1, + sym_escape_sequence, + ACTIONS(8681), 1, + sym__quoted_content_curly, + STATE(4303), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200234] = 6, + ACTIONS(8683), 1, + anon_sym_DQUOTE, + ACTIONS(8685), 1, + sym_escape_sequence, + ACTIONS(8687), 1, + sym__quoted_content_double, + STATE(4500), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200255] = 6, + ACTIONS(8689), 1, + anon_sym_SQUOTE, + ACTIONS(8691), 1, + sym_escape_sequence, + ACTIONS(8693), 1, + sym__quoted_content_single, + STATE(4501), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200276] = 6, + ACTIONS(8695), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8697), 1, + sym_escape_sequence, + ACTIONS(8699), 1, + sym__quoted_content_heredoc_single, + STATE(4502), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200297] = 6, + ACTIONS(8701), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8703), 1, + sym_escape_sequence, + ACTIONS(8705), 1, + sym__quoted_content_heredoc_double, + STATE(4503), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200318] = 6, + ACTIONS(8707), 1, + anon_sym_RBRACE, + ACTIONS(8709), 1, + sym_escape_sequence, + ACTIONS(8711), 1, + sym__quoted_content_curly, + STATE(4504), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200339] = 6, + ACTIONS(8713), 1, + anon_sym_RBRACK, + ACTIONS(8715), 1, + sym_escape_sequence, + ACTIONS(8717), 1, + sym__quoted_content_square, + STATE(4505), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200360] = 6, + ACTIONS(8719), 1, + anon_sym_GT, + ACTIONS(8721), 1, + sym_escape_sequence, + ACTIONS(8723), 1, + sym__quoted_content_angle, + STATE(4506), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200381] = 6, + ACTIONS(8725), 1, + anon_sym_PIPE, + ACTIONS(8727), 1, + sym_escape_sequence, + ACTIONS(8729), 1, + sym__quoted_content_bar, + STATE(4507), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200402] = 6, + ACTIONS(8731), 1, + anon_sym_SLASH, + ACTIONS(8733), 1, + sym_escape_sequence, + ACTIONS(8735), 1, + sym__quoted_content_slash, + STATE(4508), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200423] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8737), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200444] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8739), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200465] = 6, + ACTIONS(8741), 1, + anon_sym_DQUOTE, + ACTIONS(8743), 1, + sym_escape_sequence, + ACTIONS(8745), 1, + sym__quoted_content_double, + STATE(4321), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200486] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8747), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200507] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8749), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200528] = 6, + ACTIONS(8751), 1, + anon_sym_SQUOTE, + ACTIONS(8753), 1, + sym_escape_sequence, + ACTIONS(8755), 1, + sym__quoted_content_single, + STATE(4320), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200549] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8757), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200570] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8759), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200591] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8761), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200612] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8763), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200633] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8765), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200654] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8767), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200675] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8769), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200696] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8771), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200717] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8773), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200738] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8775), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200759] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8777), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200780] = 6, + ACTIONS(8779), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8781), 1, + sym_escape_sequence, + ACTIONS(8783), 1, + sym__quoted_content_heredoc_single, + STATE(4316), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200801] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8785), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200822] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8787), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200843] = 6, + ACTIONS(8789), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8791), 1, + sym_escape_sequence, + ACTIONS(8793), 1, + sym__quoted_content_heredoc_double, + STATE(4327), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200864] = 6, + ACTIONS(8795), 1, + anon_sym_RBRACE, + ACTIONS(8797), 1, + sym_escape_sequence, + ACTIONS(8799), 1, + sym__quoted_content_curly, + STATE(4328), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200885] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8801), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200906] = 6, + ACTIONS(8803), 1, + anon_sym_RBRACK, + ACTIONS(8805), 1, + sym_escape_sequence, + ACTIONS(8807), 1, + sym__quoted_content_square, + STATE(4330), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200927] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(371), 1, + anon_sym_DQUOTE, + ACTIONS(373), 1, + anon_sym_SQUOTE, + STATE(1784), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [200946] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8809), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200967] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8811), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [200988] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8813), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201009] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8815), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201030] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8817), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201051] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8819), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201072] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8821), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201093] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8823), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201114] = 6, + ACTIONS(8825), 1, + anon_sym_GT, + ACTIONS(8827), 1, + sym_escape_sequence, + ACTIONS(8829), 1, + sym__quoted_content_angle, + STATE(4331), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201135] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8831), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201156] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(838), 1, + anon_sym_DQUOTE, + ACTIONS(840), 1, + anon_sym_SQUOTE, + STATE(3250), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [201175] = 6, + ACTIONS(8833), 1, + anon_sym_RPAREN, + ACTIONS(8835), 1, + sym_escape_sequence, + ACTIONS(8837), 1, + sym__quoted_content_parenthesis, + STATE(4545), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201196] = 6, + ACTIONS(8839), 1, + anon_sym_DQUOTE, + ACTIONS(8841), 1, + sym_escape_sequence, + ACTIONS(8843), 1, + sym__quoted_content_double, + STATE(4546), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201217] = 6, + ACTIONS(8845), 1, + anon_sym_SQUOTE, + ACTIONS(8847), 1, + sym_escape_sequence, + ACTIONS(8849), 1, + sym__quoted_content_single, + STATE(4547), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201238] = 6, + ACTIONS(8851), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8853), 1, + sym_escape_sequence, + ACTIONS(8855), 1, + sym__quoted_content_heredoc_single, + STATE(4548), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201259] = 6, + ACTIONS(8857), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8859), 1, + sym_escape_sequence, + ACTIONS(8861), 1, + sym__quoted_content_heredoc_double, + STATE(4549), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201280] = 6, + ACTIONS(8863), 1, + anon_sym_RBRACE, + ACTIONS(8865), 1, + sym_escape_sequence, + ACTIONS(8867), 1, + sym__quoted_content_curly, + STATE(4550), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201301] = 6, + ACTIONS(8869), 1, + anon_sym_RBRACK, + ACTIONS(8871), 1, + sym_escape_sequence, + ACTIONS(8873), 1, + sym__quoted_content_square, + STATE(4551), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201322] = 6, + ACTIONS(8875), 1, + anon_sym_GT, + ACTIONS(8877), 1, + sym_escape_sequence, + ACTIONS(8879), 1, + sym__quoted_content_angle, + STATE(4552), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201343] = 6, + ACTIONS(8881), 1, + anon_sym_PIPE, + ACTIONS(8883), 1, + sym_escape_sequence, + ACTIONS(8885), 1, + sym__quoted_content_bar, + STATE(4553), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201364] = 6, + ACTIONS(8887), 1, + anon_sym_SLASH, + ACTIONS(8889), 1, + sym_escape_sequence, + ACTIONS(8891), 1, + sym__quoted_content_slash, + STATE(4554), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201385] = 6, + ACTIONS(8893), 1, + anon_sym_RPAREN, + ACTIONS(8895), 1, + sym_escape_sequence, + ACTIONS(8898), 1, + sym__quoted_content_parenthesis, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201406] = 6, + ACTIONS(8901), 1, + anon_sym_DQUOTE, + ACTIONS(8903), 1, + sym_escape_sequence, + ACTIONS(8906), 1, + sym__quoted_content_double, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201427] = 6, + ACTIONS(8909), 1, + anon_sym_SQUOTE, + ACTIONS(8911), 1, + sym_escape_sequence, + ACTIONS(8914), 1, + sym__quoted_content_single, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201448] = 6, + ACTIONS(8917), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8919), 1, + sym_escape_sequence, + ACTIONS(8922), 1, + sym__quoted_content_heredoc_single, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201469] = 6, + ACTIONS(8925), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(8927), 1, + sym_escape_sequence, + ACTIONS(8930), 1, + sym__quoted_content_heredoc_double, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201490] = 6, + ACTIONS(8933), 1, + anon_sym_RBRACE, + ACTIONS(8935), 1, + sym_escape_sequence, + ACTIONS(8938), 1, + sym__quoted_content_curly, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201511] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8941), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201532] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8943), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201553] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8945), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201574] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8947), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201595] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8949), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201616] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8951), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201637] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8953), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201658] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8955), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201679] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8957), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201700] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8959), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201721] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(27), 1, + anon_sym_DQUOTE, + ACTIONS(29), 1, + anon_sym_SQUOTE, + STATE(3040), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [201740] = 6, + ACTIONS(8961), 1, + anon_sym_DQUOTE, + ACTIONS(8963), 1, + sym_escape_sequence, + ACTIONS(8965), 1, + sym__quoted_content_double, + STATE(4343), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201761] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(8967), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201782] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(8969), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201803] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(8971), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201824] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8973), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201845] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(8975), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201866] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(8977), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201887] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(8979), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201908] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(8981), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201929] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(8983), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201950] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8985), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201971] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8987), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [201992] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(8989), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202013] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(8991), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202034] = 6, + ACTIONS(8993), 1, + anon_sym_RBRACK, + ACTIONS(8995), 1, + sym_escape_sequence, + ACTIONS(8998), 1, + sym__quoted_content_square, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202055] = 6, + ACTIONS(9001), 1, + anon_sym_PIPE, + ACTIONS(9003), 1, + sym_escape_sequence, + ACTIONS(9005), 1, + sym__quoted_content_bar, + STATE(4333), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202076] = 6, + ACTIONS(9007), 1, + anon_sym_GT, + ACTIONS(9009), 1, + sym_escape_sequence, + ACTIONS(9012), 1, + sym__quoted_content_angle, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202097] = 6, + ACTIONS(9015), 1, + anon_sym_SLASH, + ACTIONS(9017), 1, + sym_escape_sequence, + ACTIONS(9019), 1, + sym__quoted_content_slash, + STATE(4339), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202118] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(9021), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202139] = 6, + ACTIONS(9023), 1, + anon_sym_RPAREN, + ACTIONS(9025), 1, + sym_escape_sequence, + ACTIONS(9027), 1, + sym__quoted_content_parenthesis, + STATE(4591), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202160] = 6, + ACTIONS(9029), 1, + anon_sym_DQUOTE, + ACTIONS(9031), 1, + sym_escape_sequence, + ACTIONS(9033), 1, + sym__quoted_content_double, + STATE(4592), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202181] = 6, + ACTIONS(9035), 1, + anon_sym_SQUOTE, + ACTIONS(9037), 1, + sym_escape_sequence, + ACTIONS(9039), 1, + sym__quoted_content_single, + STATE(4593), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202202] = 6, + ACTIONS(9041), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9043), 1, + sym_escape_sequence, + ACTIONS(9045), 1, + sym__quoted_content_heredoc_single, + STATE(4594), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202223] = 6, + ACTIONS(9047), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9049), 1, + sym_escape_sequence, + ACTIONS(9051), 1, + sym__quoted_content_heredoc_double, + STATE(4595), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202244] = 6, + ACTIONS(9053), 1, + anon_sym_RBRACE, + ACTIONS(9055), 1, + sym_escape_sequence, + ACTIONS(9057), 1, + sym__quoted_content_curly, + STATE(4596), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202265] = 6, + ACTIONS(9059), 1, + anon_sym_RBRACK, + ACTIONS(9061), 1, + sym_escape_sequence, + ACTIONS(9063), 1, + sym__quoted_content_square, + STATE(4597), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202286] = 6, + ACTIONS(9065), 1, + anon_sym_GT, + ACTIONS(9067), 1, + sym_escape_sequence, + ACTIONS(9069), 1, + sym__quoted_content_angle, + STATE(4598), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202307] = 6, + ACTIONS(9071), 1, + anon_sym_PIPE, + ACTIONS(9073), 1, + sym_escape_sequence, + ACTIONS(9075), 1, + sym__quoted_content_bar, + STATE(4599), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202328] = 6, + ACTIONS(9077), 1, + anon_sym_SLASH, + ACTIONS(9079), 1, + sym_escape_sequence, + ACTIONS(9081), 1, + sym__quoted_content_slash, + STATE(4600), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202349] = 6, + ACTIONS(9083), 1, + anon_sym_PIPE, + ACTIONS(9085), 1, + sym_escape_sequence, + ACTIONS(9088), 1, + sym__quoted_content_bar, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202370] = 6, + ACTIONS(9091), 1, + anon_sym_SLASH, + ACTIONS(9093), 1, + sym_escape_sequence, + ACTIONS(9096), 1, + sym__quoted_content_slash, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202391] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(9099), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202412] = 6, + ACTIONS(9101), 1, + anon_sym_SLASH, + ACTIONS(9103), 1, + sym_escape_sequence, + ACTIONS(9105), 1, + sym__quoted_content_slash, + STATE(4618), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202433] = 6, + ACTIONS(9107), 1, + anon_sym_PIPE, + ACTIONS(9109), 1, + sym_escape_sequence, + ACTIONS(9111), 1, + sym__quoted_content_bar, + STATE(4480), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202454] = 6, + ACTIONS(9113), 1, + anon_sym_SQUOTE, + ACTIONS(9115), 1, + sym_escape_sequence, + ACTIONS(9117), 1, + sym__quoted_content_single, + STATE(4371), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202475] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(9119), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202496] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(9121), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202517] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(9123), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202538] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9125), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202559] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9127), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202580] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(9129), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202601] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(9131), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202622] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(9133), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202643] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(9135), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202664] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(9137), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202685] = 6, + ACTIONS(9139), 1, + anon_sym_SLASH, + ACTIONS(9141), 1, + sym_escape_sequence, + ACTIONS(9143), 1, + sym__quoted_content_slash, + STATE(4557), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202706] = 6, + ACTIONS(9145), 1, + anon_sym_PIPE, + ACTIONS(9147), 1, + sym_escape_sequence, + ACTIONS(9149), 1, + sym__quoted_content_bar, + STATE(4558), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202727] = 6, + ACTIONS(9151), 1, + anon_sym_GT, + ACTIONS(9153), 1, + sym_escape_sequence, + ACTIONS(9155), 1, + sym__quoted_content_angle, + STATE(4559), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202748] = 6, + ACTIONS(9157), 1, + anon_sym_RBRACK, + ACTIONS(9159), 1, + sym_escape_sequence, + ACTIONS(9161), 1, + sym__quoted_content_square, + STATE(4561), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202769] = 6, + ACTIONS(9163), 1, + anon_sym_RBRACE, + ACTIONS(9165), 1, + sym_escape_sequence, + ACTIONS(9167), 1, + sym__quoted_content_curly, + STATE(4562), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202790] = 6, + ACTIONS(7877), 1, + sym_escape_sequence, + ACTIONS(7879), 1, + sym__quoted_content_curly, + ACTIONS(9169), 1, + anon_sym_RBRACE, + STATE(4544), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202811] = 6, + ACTIONS(9171), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9173), 1, + sym_escape_sequence, + ACTIONS(9175), 1, + sym__quoted_content_heredoc_double, + STATE(4563), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202832] = 6, + ACTIONS(9177), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9179), 1, + sym_escape_sequence, + ACTIONS(9181), 1, + sym__quoted_content_heredoc_single, + STATE(4564), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202853] = 6, + ACTIONS(9183), 1, + anon_sym_SQUOTE, + ACTIONS(9185), 1, + sym_escape_sequence, + ACTIONS(9187), 1, + sym__quoted_content_single, + STATE(4565), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202874] = 6, + ACTIONS(9189), 1, + anon_sym_DQUOTE, + ACTIONS(9191), 1, + sym_escape_sequence, + ACTIONS(9193), 1, + sym__quoted_content_double, + STATE(4566), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202895] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, + ACTIONS(9195), 1, + anon_sym_RBRACK, + STATE(4570), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202916] = 6, + ACTIONS(9197), 1, + anon_sym_RPAREN, + ACTIONS(9199), 1, + sym_escape_sequence, + ACTIONS(9201), 1, + sym__quoted_content_parenthesis, + STATE(4567), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202937] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(9203), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202958] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(9205), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [202979] = 6, + ACTIONS(9207), 1, + anon_sym_SLASH, + ACTIONS(9209), 1, + sym_escape_sequence, + ACTIONS(9211), 1, + sym__quoted_content_slash, + STATE(4493), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203000] = 6, + ACTIONS(9213), 1, + anon_sym_PIPE, + ACTIONS(9215), 1, + sym_escape_sequence, + ACTIONS(9217), 1, + sym__quoted_content_bar, + STATE(4494), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203021] = 6, + ACTIONS(9219), 1, + anon_sym_GT, + ACTIONS(9221), 1, + sym_escape_sequence, + ACTIONS(9223), 1, + sym__quoted_content_angle, + STATE(4509), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203042] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(9225), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203063] = 6, + ACTIONS(9227), 1, + anon_sym_RBRACK, + ACTIONS(9229), 1, + sym_escape_sequence, + ACTIONS(9231), 1, + sym__quoted_content_square, + STATE(4511), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203084] = 6, + ACTIONS(9233), 1, + anon_sym_RBRACE, + ACTIONS(9235), 1, + sym_escape_sequence, + ACTIONS(9237), 1, + sym__quoted_content_curly, + STATE(4521), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203105] = 6, + ACTIONS(9239), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9241), 1, + sym_escape_sequence, + ACTIONS(9243), 1, + sym__quoted_content_heredoc_double, + STATE(4527), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203126] = 6, + ACTIONS(9245), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9247), 1, + sym_escape_sequence, + ACTIONS(9249), 1, + sym__quoted_content_heredoc_single, + STATE(4427), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203147] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [203164] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(515), 1, + anon_sym_DQUOTE, + ACTIONS(517), 1, + anon_sym_SQUOTE, + STATE(2449), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [203183] = 6, + ACTIONS(9251), 1, + anon_sym_SQUOTE, + ACTIONS(9253), 1, + sym_escape_sequence, + ACTIONS(9255), 1, + sym__quoted_content_single, + STATE(4560), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203204] = 6, + ACTIONS(9257), 1, + anon_sym_DQUOTE, + ACTIONS(9259), 1, + sym_escape_sequence, + ACTIONS(9261), 1, + sym__quoted_content_double, + STATE(4568), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203225] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(9263), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203246] = 6, + ACTIONS(9265), 1, + anon_sym_RPAREN, + ACTIONS(9267), 1, + sym_escape_sequence, + ACTIONS(9269), 1, + sym__quoted_content_parenthesis, + STATE(4569), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203267] = 6, + ACTIONS(9271), 1, + anon_sym_GT, + ACTIONS(9273), 1, + sym_escape_sequence, + ACTIONS(9275), 1, + sym__quoted_content_angle, + STATE(4447), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203288] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(952), 1, + anon_sym_DQUOTE, + ACTIONS(954), 1, + anon_sym_SQUOTE, + STATE(1717), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [203307] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(207), 1, + anon_sym_DQUOTE, + ACTIONS(209), 1, + anon_sym_SQUOTE, + STATE(1195), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [203326] = 6, + ACTIONS(9277), 1, + anon_sym_RPAREN, + ACTIONS(9279), 1, + sym_escape_sequence, + ACTIONS(9281), 1, + sym__quoted_content_parenthesis, + STATE(4644), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203347] = 6, + ACTIONS(9283), 1, + anon_sym_DQUOTE, + ACTIONS(9285), 1, + sym_escape_sequence, + ACTIONS(9287), 1, + sym__quoted_content_double, + STATE(4477), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203368] = 6, + ACTIONS(9289), 1, + anon_sym_SQUOTE, + ACTIONS(9291), 1, + sym_escape_sequence, + ACTIONS(9293), 1, + sym__quoted_content_single, + STATE(4515), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203389] = 6, + ACTIONS(9295), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9297), 1, + sym_escape_sequence, + ACTIONS(9299), 1, + sym__quoted_content_heredoc_single, + STATE(4481), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203410] = 6, + ACTIONS(9301), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9303), 1, + sym_escape_sequence, + ACTIONS(9305), 1, + sym__quoted_content_heredoc_double, + STATE(4434), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203431] = 6, + ACTIONS(9307), 1, + anon_sym_RBRACE, + ACTIONS(9309), 1, + sym_escape_sequence, + ACTIONS(9311), 1, + sym__quoted_content_curly, + STATE(4342), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203452] = 6, + ACTIONS(9313), 1, + anon_sym_RBRACK, + ACTIONS(9315), 1, + sym_escape_sequence, + ACTIONS(9317), 1, + sym__quoted_content_square, + STATE(4324), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203473] = 6, + ACTIONS(9319), 1, + anon_sym_GT, + ACTIONS(9321), 1, + sym_escape_sequence, + ACTIONS(9323), 1, + sym__quoted_content_angle, + STATE(4323), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203494] = 6, + ACTIONS(9325), 1, + anon_sym_PIPE, + ACTIONS(9327), 1, + sym_escape_sequence, + ACTIONS(9329), 1, + sym__quoted_content_bar, + STATE(4412), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203515] = 6, + ACTIONS(9331), 1, + anon_sym_SLASH, + ACTIONS(9333), 1, + sym_escape_sequence, + ACTIONS(9335), 1, + sym__quoted_content_slash, + STATE(4627), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203536] = 6, + ACTIONS(9337), 1, + anon_sym_RBRACK, + ACTIONS(9339), 1, + sym_escape_sequence, + ACTIONS(9341), 1, + sym__quoted_content_square, + STATE(4431), 1, + aux_sym__quoted_square_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203557] = 6, + ACTIONS(9343), 1, + anon_sym_RBRACE, + ACTIONS(9345), 1, + sym_escape_sequence, + ACTIONS(9347), 1, + sym__quoted_content_curly, + STATE(4426), 1, + aux_sym__quoted_curly_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203578] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(9349), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203599] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, 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, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216810] = 6, + [203620] = 6, + ACTIONS(8045), 1, + sym_escape_sequence, + ACTIONS(8047), 1, + sym__quoted_content_bar, + ACTIONS(9353), 1, + anon_sym_PIPE, + STATE(4585), 1, + aux_sym__quoted_bar_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203641] = 6, + ACTIONS(8039), 1, + sym_escape_sequence, + ACTIONS(8041), 1, + sym__quoted_content_angle, + ACTIONS(9355), 1, + anon_sym_GT, + STATE(4572), 1, + aux_sym__quoted_angle_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203662] = 6, + ACTIONS(8033), 1, + sym_escape_sequence, + ACTIONS(8035), 1, + sym__quoted_content_square, 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, + STATE(4570), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216852] = 6, - ACTIONS(9367), 1, - anon_sym_RBRACE, - ACTIONS(9369), 1, + [203683] = 6, + ACTIONS(7877), 1, sym_escape_sequence, - ACTIONS(9371), 1, + ACTIONS(7879), 1, sym__quoted_content_curly, - STATE(4870), 1, + ACTIONS(9359), 1, + anon_sym_RBRACE, + STATE(4544), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [216873] = 6, + [203704] = 6, + ACTIONS(8025), 1, + sym_escape_sequence, + ACTIONS(8027), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9361), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(4543), 1, + aux_sym__quoted_heredoc_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203725] = 6, + ACTIONS(8019), 1, + sym_escape_sequence, + ACTIONS(8021), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9363), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(4542), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203746] = 6, + ACTIONS(8013), 1, + sym_escape_sequence, + ACTIONS(8015), 1, + sym__quoted_content_single, + ACTIONS(9365), 1, + anon_sym_SQUOTE, + STATE(4541), 1, + aux_sym__quoted_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203767] = 6, + ACTIONS(8007), 1, + sym_escape_sequence, + ACTIONS(8009), 1, + sym__quoted_content_double, + ACTIONS(9367), 1, + anon_sym_DQUOTE, + STATE(4540), 1, + aux_sym__quoted_double_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203788] = 6, + ACTIONS(8001), 1, + sym_escape_sequence, + ACTIONS(8003), 1, + sym__quoted_content_parenthesis, + ACTIONS(9369), 1, + anon_sym_RPAREN, + STATE(4539), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203809] = 6, + ACTIONS(8051), 1, + sym_escape_sequence, + ACTIONS(8053), 1, + sym__quoted_content_slash, + ACTIONS(9371), 1, + anon_sym_SLASH, + STATE(4586), 1, + aux_sym__quoted_slash_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [203830] = 4, + ACTIONS(8137), 1, + sym__quoted_content_i_double, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_DQUOTE, + anon_sym_POUND_LBRACE, + sym_escape_sequence, + [203847] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1129), 1, + anon_sym_DQUOTE, + ACTIONS(1131), 1, + anon_sym_SQUOTE, + STATE(3290), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [203866] = 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, + STATE(4425), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, + sym_comment, + [203887] = 5, + ACTIONS(5), 1, 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, + anon_sym_COMMA, + STATE(4659), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(4557), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, + [203906] = 5, + ACTIONS(5), 1, 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, + ACTIONS(79), 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, + ACTIONS(81), 1, + anon_sym_SQUOTE, + STATE(1436), 2, + sym__quoted_i_double, + sym__quoted_i_single, + ACTIONS(3), 3, + sym__newline_before_binary_operator, 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, + aux_sym__terminator_token1, + [203925] = 6, + ACTIONS(9382), 1, anon_sym_SLASH, - STATE(5017), 1, + ACTIONS(9384), 1, + sym_escape_sequence, + ACTIONS(9386), 1, + sym__quoted_content_slash, + STATE(4645), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, 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, + [203946] = 6, + ACTIONS(9388), 1, anon_sym_PIPE, - STATE(5027), 1, + ACTIONS(9390), 1, + sym_escape_sequence, + ACTIONS(9392), 1, + sym__quoted_content_bar, + STATE(4646), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [217041] = 6, - ACTIONS(9281), 1, + [203967] = 6, + ACTIONS(9394), 1, + anon_sym_GT, + ACTIONS(9396), 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(9398), 1, + sym__quoted_content_angle, + STATE(4647), 1, + aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [217062] = 6, - ACTIONS(9407), 1, + [203988] = 6, + ACTIONS(9400), 1, anon_sym_RBRACK, - ACTIONS(9409), 1, + ACTIONS(9402), 1, sym_escape_sequence, - ACTIONS(9411), 1, + ACTIONS(9404), 1, sym__quoted_content_square, - STATE(4871), 1, + STATE(4648), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [217083] = 6, - ACTIONS(9413), 1, + [204009] = 6, + ACTIONS(9406), 1, anon_sym_RBRACE, - ACTIONS(9415), 1, + ACTIONS(9408), 1, sym_escape_sequence, - ACTIONS(9417), 1, + ACTIONS(9410), 1, sym__quoted_content_curly, - STATE(4872), 1, + STATE(4649), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [217104] = 6, - ACTIONS(9419), 1, + [204030] = 6, + ACTIONS(9412), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9421), 1, + ACTIONS(9414), 1, sym_escape_sequence, - ACTIONS(9423), 1, + ACTIONS(9416), 1, sym__quoted_content_heredoc_double, - STATE(4873), 1, + STATE(4650), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [217125] = 6, - ACTIONS(9425), 1, + [204051] = 6, + ACTIONS(9418), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9427), 1, + ACTIONS(9420), 1, sym_escape_sequence, - ACTIONS(9429), 1, + ACTIONS(9422), 1, sym__quoted_content_heredoc_single, - STATE(4874), 1, + STATE(4651), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [217146] = 6, - ACTIONS(9431), 1, + [204072] = 6, + ACTIONS(9424), 1, anon_sym_SQUOTE, - ACTIONS(9433), 1, + ACTIONS(9426), 1, sym_escape_sequence, - ACTIONS(9435), 1, + ACTIONS(9428), 1, sym__quoted_content_single, - STATE(4875), 1, + STATE(4652), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, sym_comment, - [217167] = 6, - ACTIONS(9437), 1, + [204093] = 6, + ACTIONS(9430), 1, anon_sym_DQUOTE, - ACTIONS(9439), 1, + ACTIONS(9432), 1, sym_escape_sequence, - ACTIONS(9441), 1, + ACTIONS(9434), 1, sym__quoted_content_double, - STATE(4876), 1, + STATE(4653), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, 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, + [204114] = 6, + ACTIONS(9436), 1, anon_sym_RPAREN, + ACTIONS(9438), 1, + sym_escape_sequence, + ACTIONS(9440), 1, + sym__quoted_content_parenthesis, + STATE(4654), 1, + aux_sym__quoted_parenthesis_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [204135] = 6, + ACTIONS(9442), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9444), 1, + sym_escape_sequence, + ACTIONS(9446), 1, + sym__quoted_content_heredoc_single, + STATE(4389), 1, + aux_sym__quoted_heredoc_single_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + [204156] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(5407), 1, + anon_sym_GT_GT, + ACTIONS(9448), 1, + anon_sym_COMMA, + STATE(4682), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204174] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(7811), 1, + anon_sym_GT_GT, + ACTIONS(9450), 1, + anon_sym_COMMA, + STATE(4672), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204192] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9452), 1, + anon_sym_RPAREN, + ACTIONS(9454), 1, + anon_sym_COMMA, + STATE(4165), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204210] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3445), 1, + anon_sym_RPAREN, + ACTIONS(9456), 1, + anon_sym_COMMA, + STATE(4683), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204228] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3422), 1, + anon_sym_GT_GT, + ACTIONS(9458), 1, + anon_sym_COMMA, + STATE(4676), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204246] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(9461), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [204260] = 4, + ACTIONS(5), 1, + sym_comment, 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, + anon_sym_RPAREN, + ACTIONS(9465), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, + [204276] = 5, + ACTIONS(5), 1, 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, + anon_sym_RPAREN, ACTIONS(9469), 1, - anon_sym_SQUOTE, - STATE(5012), 1, - aux_sym__quoted_single_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_op, + anon_sym_COMMA, + STATE(4165), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5), 2, - anon_sym_LF, + aux_sym__terminator_token1, + [204294] = 3, + ACTIONS(5), 1, sym_comment, - [217314] = 6, - ACTIONS(9263), 1, - sym_escape_sequence, - ACTIONS(9265), 1, - sym__quoted_content_slash, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4459), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [204308] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(1287), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_GT_GT, + [204322] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3192), 1, + anon_sym_GT_GT, 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, + STATE(4682), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224521] = 5, + aux_sym__terminator_token1, + [204340] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3873), 1, - anon_sym_GT_GT, - ACTIONS(10832), 1, + ACTIONS(3451), 1, + anon_sym_RPAREN, + ACTIONS(9456), 1, anon_sym_COMMA, - STATE(5240), 1, + STATE(4185), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224539] = 5, + aux_sym__terminator_token1, + [204358] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(1203), 1, anon_sym_GT_GT, - ACTIONS(10835), 1, + ACTIONS(9474), 1, anon_sym_COMMA, - STATE(5242), 1, + STATE(4676), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224557] = 5, + aux_sym__terminator_token1, + [204376] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10838), 1, + ACTIONS(9476), 1, anon_sym_RPAREN, - ACTIONS(10840), 1, + ACTIONS(2916), 2, + anon_sym_when, anon_sym_DASH_GT, - ACTIONS(10842), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204392] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9478), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204405] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + STATE(3088), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204420] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(302), 1, + anon_sym_do, + STATE(1553), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204435] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(302), 1, + anon_sym_do, + STATE(1533), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204450] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9480), 1, + aux_sym_sigil_token1, + ACTIONS(9482), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204465] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(3173), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204480] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(2705), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204495] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9465), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204508] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(302), 1, + anon_sym_do, + STATE(1650), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204523] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9484), 1, + anon_sym_LPAREN, + STATE(2973), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204538] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(3172), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204553] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9486), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204566] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9488), 1, + aux_sym_sigil_token1, + ACTIONS(9490), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3767), 1, + anon_sym_LPAREN, + STATE(2132), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204596] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9492), 1, + aux_sym_sigil_token1, + ACTIONS(9494), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204611] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9496), 1, + aux_sym_sigil_token1, + ACTIONS(9498), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204626] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9500), 1, + aux_sym_sigil_token1, + ACTIONS(9502), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204641] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9504), 1, + aux_sym_sigil_token1, + ACTIONS(9506), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204656] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9508), 1, + aux_sym_sigil_token1, + ACTIONS(9510), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204671] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2916), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204684] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9512), 1, + aux_sym_sigil_token1, + ACTIONS(9514), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204699] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3604), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204712] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(2704), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204727] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9516), 1, + anon_sym_LPAREN, + STATE(1475), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204742] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(3174), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204757] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(302), 1, + anon_sym_do, + STATE(1557), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204772] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(302), 1, + anon_sym_do, + STATE(1534), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204787] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(302), 1, + anon_sym_do, + STATE(1555), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204802] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9518), 1, + anon_sym_when, + ACTIONS(9520), 1, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204817] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2974), 1, + anon_sym_LPAREN, + STATE(1126), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204832] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9522), 1, + aux_sym_sigil_token1, + ACTIONS(9524), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204847] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9520), 1, + anon_sym_DASH_GT, + ACTIONS(9526), 1, anon_sym_when, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224575] = 5, + aux_sym__terminator_token1, + [204862] = 4, 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(658), 1, + anon_sym_do, + STATE(3311), 1, + sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224593] = 3, + aux_sym__terminator_token1, + [204877] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3761), 1, + anon_sym_LPAREN, + STATE(2150), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(9092), 3, - anon_sym_RPAREN, - anon_sym_DASH_GT, + aux_sym__terminator_token1, + [204892] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9528), 1, + anon_sym_LPAREN, + STATE(1281), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(592), 1, + anon_sym_do, + STATE(3183), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204922] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9530), 1, + aux_sym_sigil_token1, + ACTIONS(9532), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204937] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + STATE(3086), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204952] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + STATE(2895), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9534), 1, + aux_sym_sigil_token1, + ACTIONS(9536), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204982] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(405), 1, + anon_sym_do, + STATE(2483), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [204997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(405), 1, + anon_sym_do, + STATE(2120), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205012] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9538), 1, + aux_sym_sigil_token1, + ACTIONS(9540), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205027] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9542), 1, + aux_sym_sigil_token1, + ACTIONS(9544), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205042] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + STATE(3089), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205057] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9546), 1, + aux_sym_sigil_token1, + ACTIONS(9548), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205072] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3070), 1, + anon_sym_LPAREN, + STATE(1170), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205087] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + STATE(2897), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205102] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9550), 1, + aux_sym_sigil_token1, + ACTIONS(9552), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205117] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_do, + STATE(3356), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205132] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9554), 1, + anon_sym_LPAREN, + STATE(2679), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + STATE(1546), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205162] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + STATE(1387), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205177] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + STATE(1521), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205192] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + STATE(1547), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205207] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(405), 1, + anon_sym_do, + STATE(2479), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205222] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(658), 1, + anon_sym_do, + STATE(3138), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205237] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9556), 1, + aux_sym_sigil_token1, + ACTIONS(9558), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205252] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3606), 1, + anon_sym_LPAREN, + STATE(1731), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205267] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(541), 1, + anon_sym_do, + STATE(3143), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205282] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_do, + STATE(1401), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205297] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9560), 2, anon_sym_when, - [224607] = 3, - ACTIONS(5), 1, - sym_comment, + anon_sym_DASH_GT, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - ACTIONS(10173), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_GT_GT, - [224621] = 5, + aux_sym__terminator_token1, + [205310] = 4, 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, + ACTIONS(405), 1, anon_sym_do, - STATE(2541), 1, + STATE(2478), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224682] = 4, + aux_sym__terminator_token1, + [205325] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(405), 1, anon_sym_do, - STATE(3712), 1, + STATE(2122), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224697] = 4, + aux_sym__terminator_token1, + [205340] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10851), 1, + ACTIONS(9562), 1, + aux_sym_sigil_token1, + ACTIONS(9564), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205355] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9566), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205368] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9568), 1, anon_sym_LPAREN, - STATE(3240), 1, - sym__anonymous_arguments, + STATE(3053), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224712] = 4, + aux_sym__terminator_token1, + [205383] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(405), 1, anon_sym_do, - STATE(3716), 1, + STATE(2270), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224727] = 4, + aux_sym__terminator_token1, + [205398] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(233), 1, anon_sym_do, - STATE(3611), 1, + STATE(1386), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224742] = 4, + aux_sym__terminator_token1, + [205413] = 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, + ACTIONS(9570), 1, aux_sym_sigil_token1, - ACTIONS(10855), 1, + ACTIONS(9572), 1, aux_sym_sigil_token2, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224772] = 4, + aux_sym__terminator_token1, + [205428] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4530), 1, + ACTIONS(658), 1, anon_sym_do, - STATE(3094), 1, + STATE(3269), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224787] = 4, + aux_sym__terminator_token1, + [205443] = 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, + ACTIONS(3877), 1, anon_sym_LPAREN, - STATE(1916), 1, - sym__anonymous_arguments, + STATE(2636), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [224922] = 4, + aux_sym__terminator_token1, + [205458] = 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(9574), 1, + aux_sym__terminator_token1, ACTIONS(3), 2, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, 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, + ACTIONS(7848), 2, anon_sym_SEMI, anon_sym_end, - [225207] = 4, + [205473] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10915), 1, + ACTIONS(9576), 1, anon_sym_LPAREN, - STATE(3491), 1, - sym__anonymous_arguments, + STATE(2212), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225222] = 4, + aux_sym__terminator_token1, + [205488] = 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, + ACTIONS(658), 1, anon_sym_do, - STATE(3778), 1, + STATE(3136), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225267] = 3, + aux_sym__terminator_token1, + [205503] = 4, 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, + ACTIONS(658), 1, anon_sym_do, - STATE(3568), 1, + STATE(3358), 1, sym_do_block, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225295] = 4, + aux_sym__terminator_token1, + [205518] = 3, 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, + ACTIONS(9578), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225829] = 3, + aux_sym__terminator_token1, + [205530] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(9580), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205542] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9582), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205554] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9584), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225841] = 3, + aux_sym__terminator_token1, + [205566] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10952), 1, + ACTIONS(2637), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205578] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9586), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205590] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9588), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225853] = 3, + aux_sym__terminator_token1, + [205602] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(1127), 1, + ACTIONS(9590), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225865] = 3, + aux_sym__terminator_token1, + [205614] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10954), 1, + ACTIONS(9592), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205626] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9594), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205638] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9596), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205650] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9598), 1, anon_sym_DASH_GT, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225877] = 3, + aux_sym__terminator_token1, + [205662] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10956), 1, + ACTIONS(9600), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205674] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9602), 1, anon_sym_RBRACK, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225889] = 3, + aux_sym__terminator_token1, + [205686] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10958), 1, - sym_integer, + ACTIONS(9604), 1, + anon_sym_RPAREN, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225901] = 3, + aux_sym__terminator_token1, + [205698] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10960), 1, + ACTIONS(9606), 1, anon_sym_GT_GT, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225913] = 3, + aux_sym__terminator_token1, + [205710] = 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, + ACTIONS(9608), 1, sym_integer, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225937] = 3, + aux_sym__terminator_token1, + [205722] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10966), 1, + ACTIONS(9610), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205734] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9612), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225949] = 3, + aux_sym__terminator_token1, + [205746] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10968), 1, + ACTIONS(9614), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205758] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9616), 1, anon_sym_RBRACK, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225961] = 3, + aux_sym__terminator_token1, + [205770] = 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, + ACTIONS(9618), 1, anon_sym_GT_GT, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [225997] = 3, + aux_sym__terminator_token1, + [205782] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10974), 1, + ACTIONS(9620), 1, sym_integer, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226009] = 3, + aux_sym__terminator_token1, + [205794] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10976), 1, + ACTIONS(9622), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226021] = 3, + aux_sym__terminator_token1, + [205806] = 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, + ACTIONS(9624), 1, anon_sym_RPAREN, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226069] = 3, + aux_sym__terminator_token1, + [205818] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10984), 1, + ACTIONS(9626), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205830] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9628), 1, anon_sym_RPAREN, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226081] = 3, + aux_sym__terminator_token1, + [205842] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10986), 1, - anon_sym_RBRACE, + ACTIONS(9630), 1, + sym_integer, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226093] = 3, + aux_sym__terminator_token1, + [205854] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10988), 1, + ACTIONS(9632), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205866] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9634), 1, anon_sym_RPAREN, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226105] = 3, + aux_sym__terminator_token1, + [205878] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10990), 1, + ACTIONS(9636), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226117] = 3, + aux_sym__terminator_token1, + [205890] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10992), 1, + ACTIONS(9638), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226129] = 3, + aux_sym__terminator_token1, + [205902] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10994), 1, - anon_sym_RBRACK, + ACTIONS(9640), 1, + sym_integer, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226141] = 3, + aux_sym__terminator_token1, + [205914] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10996), 1, + ACTIONS(9642), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [205926] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9644), 1, anon_sym_GT_GT, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226153] = 3, + aux_sym__terminator_token1, + [205938] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10998), 1, - sym_integer, + ACTIONS(9646), 1, + anon_sym_RBRACK, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226165] = 3, + aux_sym__terminator_token1, + [205950] = 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, + ACTIONS(9648), 1, anon_sym_GT_GT, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226453] = 3, + aux_sym__terminator_token1, + [205962] = 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, + ACTIONS(9650), 1, anon_sym_SLASH, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226537] = 3, + aux_sym__terminator_token1, + [205974] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11052), 1, + ACTIONS(9652), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226549] = 3, + aux_sym__terminator_token1, + [205986] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11054), 1, + ACTIONS(9654), 1, anon_sym_LBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226561] = 3, + aux_sym__terminator_token1, + [205998] = 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, + ACTIONS(9656), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226609] = 3, + aux_sym__terminator_token1, + [206010] = 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, + ACTIONS(9658), 1, sym_integer, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226681] = 3, + aux_sym__terminator_token1, + [206022] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11076), 1, + ACTIONS(9660), 1, anon_sym_RPAREN, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226693] = 3, + aux_sym__terminator_token1, + [206034] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(1129), 1, + ACTIONS(9662), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206046] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9664), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226705] = 3, + aux_sym__terminator_token1, + [206058] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(1071), 1, + ACTIONS(9666), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206070] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9668), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206082] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9670), 1, anon_sym_LBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226717] = 3, + aux_sym__terminator_token1, + [206094] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11078), 1, + ACTIONS(9672), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206106] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9674), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206118] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9676), 1, anon_sym_LBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226729] = 3, + aux_sym__terminator_token1, + [206130] = 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, + ACTIONS(9678), 1, sym_integer, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226813] = 3, + aux_sym__terminator_token1, + [206142] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11092), 1, - anon_sym_GT_GT, + ACTIONS(9680), 1, + anon_sym_RPAREN, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226825] = 3, + aux_sym__terminator_token1, + [206154] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11094), 1, - anon_sym_GT_GT, + ACTIONS(9682), 1, + anon_sym_SLASH, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226837] = 3, + aux_sym__terminator_token1, + [206166] = 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, + ACTIONS(9684), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226861] = 3, + aux_sym__terminator_token1, + [206178] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11100), 1, + ACTIONS(9686), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206190] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9688), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206202] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9690), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206214] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9692), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206226] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9694), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206238] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9696), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206250] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9698), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206262] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9700), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206274] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9702), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206286] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9704), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206298] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9706), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206310] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9708), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206322] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9710), 1, sym_integer, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226873] = 3, + aux_sym__terminator_token1, + [206334] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(1161), 1, + ACTIONS(9712), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226885] = 3, + aux_sym__terminator_token1, + [206346] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11102), 1, + ACTIONS(9714), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206358] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9716), 1, anon_sym_RBRACK, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226897] = 3, + aux_sym__terminator_token1, + [206370] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11104), 1, + ACTIONS(9718), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206382] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9720), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206394] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9722), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206406] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9724), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206418] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9726), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206430] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9728), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206442] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9730), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206454] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9732), 1, anon_sym_DASH_GT, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226909] = 3, + aux_sym__terminator_token1, + [206466] = 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, + ACTIONS(9734), 1, anon_sym_LBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226933] = 3, + aux_sym__terminator_token1, + [206478] = 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, + ACTIONS(9736), 1, anon_sym_RBRACK, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226981] = 3, + aux_sym__terminator_token1, + [206490] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11118), 1, - sym_integer, + ACTIONS(9738), 1, + anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [226993] = 3, + aux_sym__terminator_token1, + [206502] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(137), 1, - sym__keyword_end, + ACTIONS(9740), 1, + anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227005] = 3, + aux_sym__terminator_token1, + [206514] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11120), 1, + ACTIONS(9742), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206526] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9744), 1, anon_sym_GT_GT, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227017] = 3, + aux_sym__terminator_token1, + [206538] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11122), 1, - anon_sym_RPAREN, + ACTIONS(9746), 1, + anon_sym_SLASH, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227029] = 3, + aux_sym__terminator_token1, + [206550] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11124), 1, + ACTIONS(9748), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206562] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9750), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206574] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9752), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206586] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9754), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206598] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206610] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9758), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206622] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9760), 1, anon_sym_DASH_GT, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227041] = 3, + aux_sym__terminator_token1, + [206634] = 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, + ACTIONS(9762), 1, anon_sym_SLASH, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227101] = 3, + aux_sym__terminator_token1, + [206646] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11136), 1, + ACTIONS(9764), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206658] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9766), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206670] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9768), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206682] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9770), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206694] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9772), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227113] = 3, + aux_sym__terminator_token1, + [206706] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11138), 1, + ACTIONS(9774), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227125] = 3, + aux_sym__terminator_token1, + [206718] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11140), 1, + ACTIONS(9776), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206730] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9778), 1, + anon_sym_LBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206742] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9780), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206754] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9782), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206766] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9784), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227137] = 3, + aux_sym__terminator_token1, + [206778] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11142), 1, + ACTIONS(9786), 1, + anon_sym_RBRACK, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206790] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9788), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206802] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9790), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206814] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9792), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206826] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9794), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206838] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9796), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206850] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9798), 1, + anon_sym_RBRACE, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206862] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9800), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206874] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9802), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206886] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9804), 1, + anon_sym_SLASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206898] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9806), 1, + sym_integer, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206910] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2649), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206922] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9808), 1, ts_builtin_sym_end, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227149] = 3, + aux_sym__terminator_token1, + [206934] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(4108), 1, + ACTIONS(9810), 1, anon_sym_RPAREN, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227161] = 3, + aux_sym__terminator_token1, + [206946] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11144), 1, + ACTIONS(3052), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206958] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9812), 1, + anon_sym_GT_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [206970] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9814), 1, anon_sym_RBRACK, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227173] = 3, + aux_sym__terminator_token1, + [206982] = 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, + ACTIONS(9816), 1, anon_sym_RBRACE, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227221] = 3, + aux_sym__terminator_token1, + [206994] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(1131), 1, - anon_sym_RBRACE, + ACTIONS(2609), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227233] = 3, + aux_sym__terminator_token1, + [207006] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(11152), 1, + ACTIONS(2641), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [207018] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_RPAREN, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, - [227245] = 3, + aux_sym__terminator_token1, + [207030] = 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, + ACTIONS(2631), 1, anon_sym_SLASH, ACTIONS(3), 3, - sym__newline_before_binary_op, + sym__newline_before_binary_operator, sym__newline_before_comment, - anon_sym_LF, + aux_sym__terminator_token1, }; static const uint32_t ts_small_parse_table_map[] = { - [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, + [SMALL_STATE(1087)] = 0, + [SMALL_STATE(1088)] = 75, + [SMALL_STATE(1089)] = 154, + [SMALL_STATE(1090)] = 283, + [SMALL_STATE(1091)] = 356, + [SMALL_STATE(1092)] = 485, + [SMALL_STATE(1093)] = 614, + [SMALL_STATE(1094)] = 743, + [SMALL_STATE(1095)] = 818, + [SMALL_STATE(1096)] = 893, + [SMALL_STATE(1097)] = 1022, + [SMALL_STATE(1098)] = 1151, + [SMALL_STATE(1099)] = 1280, + [SMALL_STATE(1100)] = 1353, + [SMALL_STATE(1101)] = 1482, + [SMALL_STATE(1102)] = 1555, + [SMALL_STATE(1103)] = 1628, + [SMALL_STATE(1104)] = 1701, + [SMALL_STATE(1105)] = 1774, + [SMALL_STATE(1106)] = 1847, + [SMALL_STATE(1107)] = 1920, + [SMALL_STATE(1108)] = 1999, + [SMALL_STATE(1109)] = 2074, + [SMALL_STATE(1110)] = 2149, + [SMALL_STATE(1111)] = 2228, + [SMALL_STATE(1112)] = 2303, + [SMALL_STATE(1113)] = 2382, + [SMALL_STATE(1114)] = 2455, + [SMALL_STATE(1115)] = 2532, + [SMALL_STATE(1116)] = 2605, + [SMALL_STATE(1117)] = 2678, + [SMALL_STATE(1118)] = 2751, + [SMALL_STATE(1119)] = 2824, + [SMALL_STATE(1120)] = 2899, + [SMALL_STATE(1121)] = 2972, + [SMALL_STATE(1122)] = 3045, + [SMALL_STATE(1123)] = 3118, + [SMALL_STATE(1124)] = 3191, + [SMALL_STATE(1125)] = 3264, + [SMALL_STATE(1126)] = 3343, + [SMALL_STATE(1127)] = 3416, + [SMALL_STATE(1128)] = 3488, + [SMALL_STATE(1129)] = 3560, + [SMALL_STATE(1130)] = 3632, + [SMALL_STATE(1131)] = 3704, + [SMALL_STATE(1132)] = 3776, + [SMALL_STATE(1133)] = 3848, + [SMALL_STATE(1134)] = 3920, + [SMALL_STATE(1135)] = 3992, + [SMALL_STATE(1136)] = 4064, + [SMALL_STATE(1137)] = 4136, + [SMALL_STATE(1138)] = 4208, + [SMALL_STATE(1139)] = 4280, + [SMALL_STATE(1140)] = 4352, + [SMALL_STATE(1141)] = 4424, + [SMALL_STATE(1142)] = 4496, + [SMALL_STATE(1143)] = 4568, + [SMALL_STATE(1144)] = 4640, + [SMALL_STATE(1145)] = 4712, + [SMALL_STATE(1146)] = 4784, + [SMALL_STATE(1147)] = 4856, + [SMALL_STATE(1148)] = 4928, + [SMALL_STATE(1149)] = 5000, + [SMALL_STATE(1150)] = 5072, + [SMALL_STATE(1151)] = 5144, + [SMALL_STATE(1152)] = 5216, + [SMALL_STATE(1153)] = 5288, + [SMALL_STATE(1154)] = 5360, + [SMALL_STATE(1155)] = 5432, + [SMALL_STATE(1156)] = 5504, + [SMALL_STATE(1157)] = 5578, + [SMALL_STATE(1158)] = 5650, + [SMALL_STATE(1159)] = 5722, + [SMALL_STATE(1160)] = 5794, + [SMALL_STATE(1161)] = 5866, + [SMALL_STATE(1162)] = 5938, + [SMALL_STATE(1163)] = 6012, + [SMALL_STATE(1164)] = 6084, + [SMALL_STATE(1165)] = 6156, + [SMALL_STATE(1166)] = 6228, + [SMALL_STATE(1167)] = 6300, + [SMALL_STATE(1168)] = 6372, + [SMALL_STATE(1169)] = 6444, + [SMALL_STATE(1170)] = 6518, + [SMALL_STATE(1171)] = 6590, + [SMALL_STATE(1172)] = 6662, + [SMALL_STATE(1173)] = 6734, + [SMALL_STATE(1174)] = 6806, + [SMALL_STATE(1175)] = 6878, + [SMALL_STATE(1176)] = 6950, + [SMALL_STATE(1177)] = 7022, + [SMALL_STATE(1178)] = 7094, + [SMALL_STATE(1179)] = 7166, + [SMALL_STATE(1180)] = 7238, + [SMALL_STATE(1181)] = 7310, + [SMALL_STATE(1182)] = 7382, + [SMALL_STATE(1183)] = 7454, + [SMALL_STATE(1184)] = 7526, + [SMALL_STATE(1185)] = 7598, + [SMALL_STATE(1186)] = 7670, + [SMALL_STATE(1187)] = 7742, + [SMALL_STATE(1188)] = 7816, + [SMALL_STATE(1189)] = 7888, + [SMALL_STATE(1190)] = 7960, + [SMALL_STATE(1191)] = 8032, + [SMALL_STATE(1192)] = 8104, + [SMALL_STATE(1193)] = 8176, + [SMALL_STATE(1194)] = 8248, + [SMALL_STATE(1195)] = 8320, + [SMALL_STATE(1196)] = 8392, + [SMALL_STATE(1197)] = 8464, + [SMALL_STATE(1198)] = 8536, + [SMALL_STATE(1199)] = 8608, + [SMALL_STATE(1200)] = 8680, + [SMALL_STATE(1201)] = 8798, + [SMALL_STATE(1202)] = 8870, + [SMALL_STATE(1203)] = 8942, + [SMALL_STATE(1204)] = 9020, + [SMALL_STATE(1205)] = 9092, + [SMALL_STATE(1206)] = 9164, + [SMALL_STATE(1207)] = 9236, + [SMALL_STATE(1208)] = 9314, + [SMALL_STATE(1209)] = 9392, + [SMALL_STATE(1210)] = 9464, + [SMALL_STATE(1211)] = 9536, + [SMALL_STATE(1212)] = 9608, + [SMALL_STATE(1213)] = 9680, + [SMALL_STATE(1214)] = 9752, + [SMALL_STATE(1215)] = 9824, + [SMALL_STATE(1216)] = 9896, + [SMALL_STATE(1217)] = 9970, + [SMALL_STATE(1218)] = 10042, + [SMALL_STATE(1219)] = 10114, + [SMALL_STATE(1220)] = 10188, + [SMALL_STATE(1221)] = 10260, + [SMALL_STATE(1222)] = 10332, + [SMALL_STATE(1223)] = 10404, + [SMALL_STATE(1224)] = 10476, + [SMALL_STATE(1225)] = 10548, + [SMALL_STATE(1226)] = 10620, + [SMALL_STATE(1227)] = 10692, + [SMALL_STATE(1228)] = 10764, + [SMALL_STATE(1229)] = 10840, + [SMALL_STATE(1230)] = 10912, + [SMALL_STATE(1231)] = 10988, + [SMALL_STATE(1232)] = 11064, + [SMALL_STATE(1233)] = 11136, + [SMALL_STATE(1234)] = 11208, + [SMALL_STATE(1235)] = 11280, + [SMALL_STATE(1236)] = 11352, + [SMALL_STATE(1237)] = 11424, + [SMALL_STATE(1238)] = 11496, + [SMALL_STATE(1239)] = 11572, + [SMALL_STATE(1240)] = 11648, + [SMALL_STATE(1241)] = 11720, + [SMALL_STATE(1242)] = 11792, + [SMALL_STATE(1243)] = 11864, + [SMALL_STATE(1244)] = 11940, + [SMALL_STATE(1245)] = 12012, + [SMALL_STATE(1246)] = 12084, + [SMALL_STATE(1247)] = 12156, + [SMALL_STATE(1248)] = 12228, + [SMALL_STATE(1249)] = 12300, + [SMALL_STATE(1250)] = 12372, + [SMALL_STATE(1251)] = 12444, + [SMALL_STATE(1252)] = 12516, + [SMALL_STATE(1253)] = 12588, + [SMALL_STATE(1254)] = 12660, + [SMALL_STATE(1255)] = 12732, + [SMALL_STATE(1256)] = 12804, + [SMALL_STATE(1257)] = 12875, + [SMALL_STATE(1258)] = 12946, + [SMALL_STATE(1259)] = 13017, + [SMALL_STATE(1260)] = 13112, + [SMALL_STATE(1261)] = 13187, + [SMALL_STATE(1262)] = 13258, + [SMALL_STATE(1263)] = 13329, + [SMALL_STATE(1264)] = 13400, + [SMALL_STATE(1265)] = 13471, + [SMALL_STATE(1266)] = 13542, + [SMALL_STATE(1267)] = 13613, + [SMALL_STATE(1268)] = 13684, + [SMALL_STATE(1269)] = 13755, + [SMALL_STATE(1270)] = 13826, + [SMALL_STATE(1271)] = 13901, + [SMALL_STATE(1272)] = 13976, + [SMALL_STATE(1273)] = 14051, + [SMALL_STATE(1274)] = 14122, + [SMALL_STATE(1275)] = 14197, + [SMALL_STATE(1276)] = 14268, + [SMALL_STATE(1277)] = 14339, + [SMALL_STATE(1278)] = 14410, + [SMALL_STATE(1279)] = 14481, + [SMALL_STATE(1280)] = 14572, + [SMALL_STATE(1281)] = 14643, + [SMALL_STATE(1282)] = 14714, + [SMALL_STATE(1283)] = 14785, + [SMALL_STATE(1284)] = 14856, + [SMALL_STATE(1285)] = 14927, + [SMALL_STATE(1286)] = 14998, + [SMALL_STATE(1287)] = 15069, + [SMALL_STATE(1288)] = 15154, + [SMALL_STATE(1289)] = 15225, + [SMALL_STATE(1290)] = 15296, + [SMALL_STATE(1291)] = 15367, + [SMALL_STATE(1292)] = 15438, + [SMALL_STATE(1293)] = 15509, + [SMALL_STATE(1294)] = 15594, + [SMALL_STATE(1295)] = 15693, + [SMALL_STATE(1296)] = 15764, + [SMALL_STATE(1297)] = 15835, + [SMALL_STATE(1298)] = 15906, + [SMALL_STATE(1299)] = 16009, + [SMALL_STATE(1300)] = 16080, + [SMALL_STATE(1301)] = 16185, + [SMALL_STATE(1302)] = 16256, + [SMALL_STATE(1303)] = 16365, + [SMALL_STATE(1304)] = 16436, + [SMALL_STATE(1305)] = 16507, + [SMALL_STATE(1306)] = 16578, + [SMALL_STATE(1307)] = 16651, + [SMALL_STATE(1308)] = 16722, + [SMALL_STATE(1309)] = 16833, + [SMALL_STATE(1310)] = 16904, + [SMALL_STATE(1311)] = 16975, + [SMALL_STATE(1312)] = 17086, + [SMALL_STATE(1313)] = 17157, + [SMALL_STATE(1314)] = 17228, + [SMALL_STATE(1315)] = 17307, + [SMALL_STATE(1316)] = 17378, + [SMALL_STATE(1317)] = 17455, + [SMALL_STATE(1318)] = 17526, + [SMALL_STATE(1319)] = 17599, + [SMALL_STATE(1320)] = 17706, + [SMALL_STATE(1321)] = 17789, + [SMALL_STATE(1322)] = 17860, + [SMALL_STATE(1323)] = 17933, + [SMALL_STATE(1324)] = 18004, + [SMALL_STATE(1325)] = 18075, + [SMALL_STATE(1326)] = 18146, + [SMALL_STATE(1327)] = 18217, + [SMALL_STATE(1328)] = 18288, + [SMALL_STATE(1329)] = 18359, + [SMALL_STATE(1330)] = 18434, + [SMALL_STATE(1331)] = 18505, + [SMALL_STATE(1332)] = 18576, + [SMALL_STATE(1333)] = 18647, + [SMALL_STATE(1334)] = 18718, + [SMALL_STATE(1335)] = 18811, + [SMALL_STATE(1336)] = 18898, + [SMALL_STATE(1337)] = 18969, + [SMALL_STATE(1338)] = 19040, + [SMALL_STATE(1339)] = 19111, + [SMALL_STATE(1340)] = 19182, + [SMALL_STATE(1341)] = 19253, + [SMALL_STATE(1342)] = 19324, + [SMALL_STATE(1343)] = 19395, + [SMALL_STATE(1344)] = 19466, + [SMALL_STATE(1345)] = 19563, + [SMALL_STATE(1346)] = 19634, + [SMALL_STATE(1347)] = 19705, + [SMALL_STATE(1348)] = 19776, + [SMALL_STATE(1349)] = 19847, + [SMALL_STATE(1350)] = 19918, + [SMALL_STATE(1351)] = 19989, + [SMALL_STATE(1352)] = 20060, + [SMALL_STATE(1353)] = 20131, + [SMALL_STATE(1354)] = 20202, + [SMALL_STATE(1355)] = 20273, + [SMALL_STATE(1356)] = 20344, + [SMALL_STATE(1357)] = 20415, + [SMALL_STATE(1358)] = 20486, + [SMALL_STATE(1359)] = 20557, + [SMALL_STATE(1360)] = 20628, + [SMALL_STATE(1361)] = 20699, + [SMALL_STATE(1362)] = 20770, + [SMALL_STATE(1363)] = 20841, + [SMALL_STATE(1364)] = 20912, + [SMALL_STATE(1365)] = 20983, + [SMALL_STATE(1366)] = 21054, + [SMALL_STATE(1367)] = 21125, + [SMALL_STATE(1368)] = 21196, + [SMALL_STATE(1369)] = 21267, + [SMALL_STATE(1370)] = 21338, + [SMALL_STATE(1371)] = 21409, + [SMALL_STATE(1372)] = 21480, + [SMALL_STATE(1373)] = 21551, + [SMALL_STATE(1374)] = 21622, + [SMALL_STATE(1375)] = 21693, + [SMALL_STATE(1376)] = 21768, + [SMALL_STATE(1377)] = 21839, + [SMALL_STATE(1378)] = 21956, + [SMALL_STATE(1379)] = 22027, + [SMALL_STATE(1380)] = 22098, + [SMALL_STATE(1381)] = 22211, + [SMALL_STATE(1382)] = 22282, + [SMALL_STATE(1383)] = 22395, + [SMALL_STATE(1384)] = 22466, + [SMALL_STATE(1385)] = 22579, + [SMALL_STATE(1386)] = 22650, + [SMALL_STATE(1387)] = 22721, + [SMALL_STATE(1388)] = 22792, + [SMALL_STATE(1389)] = 22863, + [SMALL_STATE(1390)] = 22934, + [SMALL_STATE(1391)] = 23005, + [SMALL_STATE(1392)] = 23076, + [SMALL_STATE(1393)] = 23147, + [SMALL_STATE(1394)] = 23218, + [SMALL_STATE(1395)] = 23293, + [SMALL_STATE(1396)] = 23364, + [SMALL_STATE(1397)] = 23435, + [SMALL_STATE(1398)] = 23506, + [SMALL_STATE(1399)] = 23581, + [SMALL_STATE(1400)] = 23652, + [SMALL_STATE(1401)] = 23722, + [SMALL_STATE(1402)] = 23792, + [SMALL_STATE(1403)] = 23862, + [SMALL_STATE(1404)] = 23932, + [SMALL_STATE(1405)] = 24006, + [SMALL_STATE(1406)] = 24080, + [SMALL_STATE(1407)] = 24152, + [SMALL_STATE(1408)] = 24222, + [SMALL_STATE(1409)] = 24294, + [SMALL_STATE(1410)] = 24366, + [SMALL_STATE(1411)] = 24436, + [SMALL_STATE(1412)] = 24508, + [SMALL_STATE(1413)] = 24636, + [SMALL_STATE(1414)] = 24710, + [SMALL_STATE(1415)] = 24784, + [SMALL_STATE(1416)] = 24858, + [SMALL_STATE(1417)] = 24932, + [SMALL_STATE(1418)] = 25004, + [SMALL_STATE(1419)] = 25076, + [SMALL_STATE(1420)] = 25146, + [SMALL_STATE(1421)] = 25216, + [SMALL_STATE(1422)] = 25286, + [SMALL_STATE(1423)] = 25356, + [SMALL_STATE(1424)] = 25426, + [SMALL_STATE(1425)] = 25496, + [SMALL_STATE(1426)] = 25568, + [SMALL_STATE(1427)] = 25642, + [SMALL_STATE(1428)] = 25712, + [SMALL_STATE(1429)] = 25794, + [SMALL_STATE(1430)] = 25878, + [SMALL_STATE(1431)] = 25962, + [SMALL_STATE(1432)] = 26032, + [SMALL_STATE(1433)] = 26102, + [SMALL_STATE(1434)] = 26172, + [SMALL_STATE(1435)] = 26242, + [SMALL_STATE(1436)] = 26312, + [SMALL_STATE(1437)] = 26382, + [SMALL_STATE(1438)] = 26472, + [SMALL_STATE(1439)] = 26542, + [SMALL_STATE(1440)] = 26612, + [SMALL_STATE(1441)] = 26706, + [SMALL_STATE(1442)] = 26802, + [SMALL_STATE(1443)] = 26900, + [SMALL_STATE(1444)] = 27028, + [SMALL_STATE(1445)] = 27098, + [SMALL_STATE(1446)] = 27168, + [SMALL_STATE(1447)] = 27238, + [SMALL_STATE(1448)] = 27308, + [SMALL_STATE(1449)] = 27378, + [SMALL_STATE(1450)] = 27448, + [SMALL_STATE(1451)] = 27518, + [SMALL_STATE(1452)] = 27588, + [SMALL_STATE(1453)] = 27658, + [SMALL_STATE(1454)] = 27728, + [SMALL_STATE(1455)] = 27798, + [SMALL_STATE(1456)] = 27868, + [SMALL_STATE(1457)] = 27938, + [SMALL_STATE(1458)] = 28008, + [SMALL_STATE(1459)] = 28078, + [SMALL_STATE(1460)] = 28148, + [SMALL_STATE(1461)] = 28218, + [SMALL_STATE(1462)] = 28288, + [SMALL_STATE(1463)] = 28358, + [SMALL_STATE(1464)] = 28428, + [SMALL_STATE(1465)] = 28498, + [SMALL_STATE(1466)] = 28568, + [SMALL_STATE(1467)] = 28638, + [SMALL_STATE(1468)] = 28708, + [SMALL_STATE(1469)] = 28778, + [SMALL_STATE(1470)] = 28848, + [SMALL_STATE(1471)] = 28918, + [SMALL_STATE(1472)] = 28988, + [SMALL_STATE(1473)] = 29058, + [SMALL_STATE(1474)] = 29128, + [SMALL_STATE(1475)] = 29230, + [SMALL_STATE(1476)] = 29300, + [SMALL_STATE(1477)] = 29370, + [SMALL_STATE(1478)] = 29474, + [SMALL_STATE(1479)] = 29544, + [SMALL_STATE(1480)] = 29614, + [SMALL_STATE(1481)] = 29684, + [SMALL_STATE(1482)] = 29754, + [SMALL_STATE(1483)] = 29824, + [SMALL_STATE(1484)] = 29894, + [SMALL_STATE(1485)] = 29964, + [SMALL_STATE(1486)] = 30034, + [SMALL_STATE(1487)] = 30104, + [SMALL_STATE(1488)] = 30174, + [SMALL_STATE(1489)] = 30282, + [SMALL_STATE(1490)] = 30352, + [SMALL_STATE(1491)] = 30422, + [SMALL_STATE(1492)] = 30492, + [SMALL_STATE(1493)] = 30602, + [SMALL_STATE(1494)] = 30712, + [SMALL_STATE(1495)] = 30782, + [SMALL_STATE(1496)] = 30852, + [SMALL_STATE(1497)] = 30922, + [SMALL_STATE(1498)] = 30992, + [SMALL_STATE(1499)] = 31062, + [SMALL_STATE(1500)] = 31132, + [SMALL_STATE(1501)] = 31202, + [SMALL_STATE(1502)] = 31272, + [SMALL_STATE(1503)] = 31350, + [SMALL_STATE(1504)] = 31420, + [SMALL_STATE(1505)] = 31490, + [SMALL_STATE(1506)] = 31560, + [SMALL_STATE(1507)] = 31630, + [SMALL_STATE(1508)] = 31706, + [SMALL_STATE(1509)] = 31826, + [SMALL_STATE(1510)] = 31932, + [SMALL_STATE(1511)] = 32024, + [SMALL_STATE(1512)] = 32144, + [SMALL_STATE(1513)] = 32214, + [SMALL_STATE(1514)] = 32300, + [SMALL_STATE(1515)] = 32370, + [SMALL_STATE(1516)] = 32440, + [SMALL_STATE(1517)] = 32510, + [SMALL_STATE(1518)] = 32580, + [SMALL_STATE(1519)] = 32650, + [SMALL_STATE(1520)] = 32762, + [SMALL_STATE(1521)] = 32832, + [SMALL_STATE(1522)] = 32902, + [SMALL_STATE(1523)] = 32972, + [SMALL_STATE(1524)] = 33042, + [SMALL_STATE(1525)] = 33154, + [SMALL_STATE(1526)] = 33266, + [SMALL_STATE(1527)] = 33336, + [SMALL_STATE(1528)] = 33406, + [SMALL_STATE(1529)] = 33476, + [SMALL_STATE(1530)] = 33546, + [SMALL_STATE(1531)] = 33616, + [SMALL_STATE(1532)] = 33686, + [SMALL_STATE(1533)] = 33756, + [SMALL_STATE(1534)] = 33826, + [SMALL_STATE(1535)] = 33896, + [SMALL_STATE(1536)] = 33966, + [SMALL_STATE(1537)] = 34036, + [SMALL_STATE(1538)] = 34106, + [SMALL_STATE(1539)] = 34176, + [SMALL_STATE(1540)] = 34246, + [SMALL_STATE(1541)] = 34322, + [SMALL_STATE(1542)] = 34398, + [SMALL_STATE(1543)] = 34468, + [SMALL_STATE(1544)] = 34538, + [SMALL_STATE(1545)] = 34608, + [SMALL_STATE(1546)] = 34678, + [SMALL_STATE(1547)] = 34748, + [SMALL_STATE(1548)] = 34818, + [SMALL_STATE(1549)] = 34943, + [SMALL_STATE(1550)] = 35012, + [SMALL_STATE(1551)] = 35081, + [SMALL_STATE(1552)] = 35206, + [SMALL_STATE(1553)] = 35331, + [SMALL_STATE(1554)] = 35400, + [SMALL_STATE(1555)] = 35485, + [SMALL_STATE(1556)] = 35554, + [SMALL_STATE(1557)] = 35679, + [SMALL_STATE(1558)] = 35748, + [SMALL_STATE(1559)] = 35817, + [SMALL_STATE(1560)] = 35888, + [SMALL_STATE(1561)] = 36013, + [SMALL_STATE(1562)] = 36082, + [SMALL_STATE(1563)] = 36151, + [SMALL_STATE(1564)] = 36220, + [SMALL_STATE(1565)] = 36289, + [SMALL_STATE(1566)] = 36358, + [SMALL_STATE(1567)] = 36427, + [SMALL_STATE(1568)] = 36552, + [SMALL_STATE(1569)] = 36621, + [SMALL_STATE(1570)] = 36690, + [SMALL_STATE(1571)] = 36759, + [SMALL_STATE(1572)] = 36828, + [SMALL_STATE(1573)] = 36897, + [SMALL_STATE(1574)] = 36966, + [SMALL_STATE(1575)] = 37035, + [SMALL_STATE(1576)] = 37104, + [SMALL_STATE(1577)] = 37173, + [SMALL_STATE(1578)] = 37242, + [SMALL_STATE(1579)] = 37311, + [SMALL_STATE(1580)] = 37380, + [SMALL_STATE(1581)] = 37449, + [SMALL_STATE(1582)] = 37574, + [SMALL_STATE(1583)] = 37643, + [SMALL_STATE(1584)] = 37712, + [SMALL_STATE(1585)] = 37781, + [SMALL_STATE(1586)] = 37850, + [SMALL_STATE(1587)] = 37919, + [SMALL_STATE(1588)] = 37988, + [SMALL_STATE(1589)] = 38057, + [SMALL_STATE(1590)] = 38126, + [SMALL_STATE(1591)] = 38195, + [SMALL_STATE(1592)] = 38264, + [SMALL_STATE(1593)] = 38333, + [SMALL_STATE(1594)] = 38402, + [SMALL_STATE(1595)] = 38471, + [SMALL_STATE(1596)] = 38540, + [SMALL_STATE(1597)] = 38609, + [SMALL_STATE(1598)] = 38678, + [SMALL_STATE(1599)] = 38747, + [SMALL_STATE(1600)] = 38816, + [SMALL_STATE(1601)] = 38885, + [SMALL_STATE(1602)] = 38954, + [SMALL_STATE(1603)] = 39023, + [SMALL_STATE(1604)] = 39092, + [SMALL_STATE(1605)] = 39161, + [SMALL_STATE(1606)] = 39230, + [SMALL_STATE(1607)] = 39299, + [SMALL_STATE(1608)] = 39368, + [SMALL_STATE(1609)] = 39437, + [SMALL_STATE(1610)] = 39506, + [SMALL_STATE(1611)] = 39575, + [SMALL_STATE(1612)] = 39644, + [SMALL_STATE(1613)] = 39713, + [SMALL_STATE(1614)] = 39782, + [SMALL_STATE(1615)] = 39851, + [SMALL_STATE(1616)] = 39920, + [SMALL_STATE(1617)] = 39989, + [SMALL_STATE(1618)] = 40058, + [SMALL_STATE(1619)] = 40127, + [SMALL_STATE(1620)] = 40196, + [SMALL_STATE(1621)] = 40265, + [SMALL_STATE(1622)] = 40334, + [SMALL_STATE(1623)] = 40403, + [SMALL_STATE(1624)] = 40472, + [SMALL_STATE(1625)] = 40541, + [SMALL_STATE(1626)] = 40610, + [SMALL_STATE(1627)] = 40685, + [SMALL_STATE(1628)] = 40754, + [SMALL_STATE(1629)] = 40829, + [SMALL_STATE(1630)] = 40904, + [SMALL_STATE(1631)] = 40973, + [SMALL_STATE(1632)] = 41042, + [SMALL_STATE(1633)] = 41111, + [SMALL_STATE(1634)] = 41180, + [SMALL_STATE(1635)] = 41249, + [SMALL_STATE(1636)] = 41374, + [SMALL_STATE(1637)] = 41499, + [SMALL_STATE(1638)] = 41624, + [SMALL_STATE(1639)] = 41693, + [SMALL_STATE(1640)] = 41762, + [SMALL_STATE(1641)] = 41831, + [SMALL_STATE(1642)] = 41900, + [SMALL_STATE(1643)] = 41969, + [SMALL_STATE(1644)] = 42038, + [SMALL_STATE(1645)] = 42107, + [SMALL_STATE(1646)] = 42176, + [SMALL_STATE(1647)] = 42245, + [SMALL_STATE(1648)] = 42370, + [SMALL_STATE(1649)] = 42495, + [SMALL_STATE(1650)] = 42564, + [SMALL_STATE(1651)] = 42633, + [SMALL_STATE(1652)] = 42702, + [SMALL_STATE(1653)] = 42771, + [SMALL_STATE(1654)] = 42840, + [SMALL_STATE(1655)] = 42965, + [SMALL_STATE(1656)] = 43034, + [SMALL_STATE(1657)] = 43103, + [SMALL_STATE(1658)] = 43172, + [SMALL_STATE(1659)] = 43267, + [SMALL_STATE(1660)] = 43336, + [SMALL_STATE(1661)] = 43461, + [SMALL_STATE(1662)] = 43586, + [SMALL_STATE(1663)] = 43711, + [SMALL_STATE(1664)] = 43836, + [SMALL_STATE(1665)] = 43905, + [SMALL_STATE(1666)] = 43974, + [SMALL_STATE(1667)] = 44043, + [SMALL_STATE(1668)] = 44112, + [SMALL_STATE(1669)] = 44223, + [SMALL_STATE(1670)] = 44348, + [SMALL_STATE(1671)] = 44417, + [SMALL_STATE(1672)] = 44528, + [SMALL_STATE(1673)] = 44597, + [SMALL_STATE(1674)] = 44666, + [SMALL_STATE(1675)] = 44735, + [SMALL_STATE(1676)] = 44804, + [SMALL_STATE(1677)] = 44873, + [SMALL_STATE(1678)] = 44942, + [SMALL_STATE(1679)] = 45011, + [SMALL_STATE(1680)] = 45080, + [SMALL_STATE(1681)] = 45149, + [SMALL_STATE(1682)] = 45274, + [SMALL_STATE(1683)] = 45343, + [SMALL_STATE(1684)] = 45412, + [SMALL_STATE(1685)] = 45481, + [SMALL_STATE(1686)] = 45550, + [SMALL_STATE(1687)] = 45619, + [SMALL_STATE(1688)] = 45688, + [SMALL_STATE(1689)] = 45757, + [SMALL_STATE(1690)] = 45826, + [SMALL_STATE(1691)] = 45895, + [SMALL_STATE(1692)] = 45964, + [SMALL_STATE(1693)] = 46033, + [SMALL_STATE(1694)] = 46102, + [SMALL_STATE(1695)] = 46171, + [SMALL_STATE(1696)] = 46262, + [SMALL_STATE(1697)] = 46331, + [SMALL_STATE(1698)] = 46400, + [SMALL_STATE(1699)] = 46469, + [SMALL_STATE(1700)] = 46538, + [SMALL_STATE(1701)] = 46607, + [SMALL_STATE(1702)] = 46676, + [SMALL_STATE(1703)] = 46745, + [SMALL_STATE(1704)] = 46814, + [SMALL_STATE(1705)] = 46887, + [SMALL_STATE(1706)] = 46960, + [SMALL_STATE(1707)] = 47033, + [SMALL_STATE(1708)] = 47138, + [SMALL_STATE(1709)] = 47213, + [SMALL_STATE(1710)] = 47290, + [SMALL_STATE(1711)] = 47399, + [SMALL_STATE(1712)] = 47468, + [SMALL_STATE(1713)] = 47537, + [SMALL_STATE(1714)] = 47618, + [SMALL_STATE(1715)] = 47689, + [SMALL_STATE(1716)] = 47760, + [SMALL_STATE(1717)] = 47843, + [SMALL_STATE(1718)] = 47912, + [SMALL_STATE(1719)] = 48021, + [SMALL_STATE(1720)] = 48104, + [SMALL_STATE(1721)] = 48193, + [SMALL_STATE(1722)] = 48318, + [SMALL_STATE(1723)] = 48387, + [SMALL_STATE(1724)] = 48512, + [SMALL_STATE(1725)] = 48619, + [SMALL_STATE(1726)] = 48744, + [SMALL_STATE(1727)] = 48815, + [SMALL_STATE(1728)] = 48884, + [SMALL_STATE(1729)] = 48953, + [SMALL_STATE(1730)] = 49022, + [SMALL_STATE(1731)] = 49091, + [SMALL_STATE(1732)] = 49160, + [SMALL_STATE(1733)] = 49231, + [SMALL_STATE(1734)] = 49300, + [SMALL_STATE(1735)] = 49371, + [SMALL_STATE(1736)] = 49442, + [SMALL_STATE(1737)] = 49511, + [SMALL_STATE(1738)] = 49614, + [SMALL_STATE(1739)] = 49715, + [SMALL_STATE(1740)] = 49812, + [SMALL_STATE(1741)] = 49937, + [SMALL_STATE(1742)] = 50062, + [SMALL_STATE(1743)] = 50187, + [SMALL_STATE(1744)] = 50312, + [SMALL_STATE(1745)] = 50437, + [SMALL_STATE(1746)] = 50562, + [SMALL_STATE(1747)] = 50687, + [SMALL_STATE(1748)] = 50812, + [SMALL_STATE(1749)] = 50937, + [SMALL_STATE(1750)] = 51006, + [SMALL_STATE(1751)] = 51075, + [SMALL_STATE(1752)] = 51200, + [SMALL_STATE(1753)] = 51325, + [SMALL_STATE(1754)] = 51398, + [SMALL_STATE(1755)] = 51467, + [SMALL_STATE(1756)] = 51536, + [SMALL_STATE(1757)] = 51605, + [SMALL_STATE(1758)] = 51674, + [SMALL_STATE(1759)] = 51767, + [SMALL_STATE(1760)] = 51836, + [SMALL_STATE(1761)] = 51909, + [SMALL_STATE(1762)] = 51982, + [SMALL_STATE(1763)] = 52051, + [SMALL_STATE(1764)] = 52120, + [SMALL_STATE(1765)] = 52245, + [SMALL_STATE(1766)] = 52314, + [SMALL_STATE(1767)] = 52383, + [SMALL_STATE(1768)] = 52508, + [SMALL_STATE(1769)] = 52633, + [SMALL_STATE(1770)] = 52701, + [SMALL_STATE(1771)] = 52769, + [SMALL_STATE(1772)] = 52837, + [SMALL_STATE(1773)] = 52905, + [SMALL_STATE(1774)] = 52973, + [SMALL_STATE(1775)] = 53041, + [SMALL_STATE(1776)] = 53109, + [SMALL_STATE(1777)] = 53177, + [SMALL_STATE(1778)] = 53245, + [SMALL_STATE(1779)] = 53313, + [SMALL_STATE(1780)] = 53381, + [SMALL_STATE(1781)] = 53453, + [SMALL_STATE(1782)] = 53521, + [SMALL_STATE(1783)] = 53591, + [SMALL_STATE(1784)] = 53659, + [SMALL_STATE(1785)] = 53727, + [SMALL_STATE(1786)] = 53795, + [SMALL_STATE(1787)] = 53863, + [SMALL_STATE(1788)] = 53931, + [SMALL_STATE(1789)] = 53999, + [SMALL_STATE(1790)] = 54067, + [SMALL_STATE(1791)] = 54135, + [SMALL_STATE(1792)] = 54203, + [SMALL_STATE(1793)] = 54271, + [SMALL_STATE(1794)] = 54339, + [SMALL_STATE(1795)] = 54407, + [SMALL_STATE(1796)] = 54475, + [SMALL_STATE(1797)] = 54543, + [SMALL_STATE(1798)] = 54611, + [SMALL_STATE(1799)] = 54679, + [SMALL_STATE(1800)] = 54747, + [SMALL_STATE(1801)] = 54815, + [SMALL_STATE(1802)] = 54883, + [SMALL_STATE(1803)] = 54951, + [SMALL_STATE(1804)] = 55019, + [SMALL_STATE(1805)] = 55087, + [SMALL_STATE(1806)] = 55155, + [SMALL_STATE(1807)] = 55223, + [SMALL_STATE(1808)] = 55291, + [SMALL_STATE(1809)] = 55359, + [SMALL_STATE(1810)] = 55431, + [SMALL_STATE(1811)] = 55499, + [SMALL_STATE(1812)] = 55567, + [SMALL_STATE(1813)] = 55635, + [SMALL_STATE(1814)] = 55707, + [SMALL_STATE(1815)] = 55775, + [SMALL_STATE(1816)] = 55843, + [SMALL_STATE(1817)] = 55911, + [SMALL_STATE(1818)] = 55979, + [SMALL_STATE(1819)] = 56047, + [SMALL_STATE(1820)] = 56115, + [SMALL_STATE(1821)] = 56183, + [SMALL_STATE(1822)] = 56251, + [SMALL_STATE(1823)] = 56319, + [SMALL_STATE(1824)] = 56387, + [SMALL_STATE(1825)] = 56459, + [SMALL_STATE(1826)] = 56531, + [SMALL_STATE(1827)] = 56599, + [SMALL_STATE(1828)] = 56667, + [SMALL_STATE(1829)] = 56735, + [SMALL_STATE(1830)] = 56803, + [SMALL_STATE(1831)] = 56875, + [SMALL_STATE(1832)] = 56943, + [SMALL_STATE(1833)] = 57011, + [SMALL_STATE(1834)] = 57079, + [SMALL_STATE(1835)] = 57147, + [SMALL_STATE(1836)] = 57215, + [SMALL_STATE(1837)] = 57283, + [SMALL_STATE(1838)] = 57351, + [SMALL_STATE(1839)] = 57419, + [SMALL_STATE(1840)] = 57487, + [SMALL_STATE(1841)] = 57561, + [SMALL_STATE(1842)] = 57629, + [SMALL_STATE(1843)] = 57697, + [SMALL_STATE(1844)] = 57769, + [SMALL_STATE(1845)] = 57837, + [SMALL_STATE(1846)] = 57905, + [SMALL_STATE(1847)] = 57973, + [SMALL_STATE(1848)] = 58041, + [SMALL_STATE(1849)] = 58109, + [SMALL_STATE(1850)] = 58183, + [SMALL_STATE(1851)] = 58251, + [SMALL_STATE(1852)] = 58319, + [SMALL_STATE(1853)] = 58387, + [SMALL_STATE(1854)] = 58455, + [SMALL_STATE(1855)] = 58523, + [SMALL_STATE(1856)] = 58591, + [SMALL_STATE(1857)] = 58659, + [SMALL_STATE(1858)] = 58731, + [SMALL_STATE(1859)] = 58805, + [SMALL_STATE(1860)] = 58879, + [SMALL_STATE(1861)] = 58989, + [SMALL_STATE(1862)] = 59099, + [SMALL_STATE(1863)] = 59213, + [SMALL_STATE(1864)] = 59281, + [SMALL_STATE(1865)] = 59351, + [SMALL_STATE(1866)] = 59423, + [SMALL_STATE(1867)] = 59495, + [SMALL_STATE(1868)] = 59567, + [SMALL_STATE(1869)] = 59639, + [SMALL_STATE(1870)] = 59707, + [SMALL_STATE(1871)] = 59779, + [SMALL_STATE(1872)] = 59851, + [SMALL_STATE(1873)] = 59923, + [SMALL_STATE(1874)] = 60037, + [SMALL_STATE(1875)] = 60105, + [SMALL_STATE(1876)] = 60173, + [SMALL_STATE(1877)] = 60241, + [SMALL_STATE(1878)] = 60309, + [SMALL_STATE(1879)] = 60377, + [SMALL_STATE(1880)] = 60445, + [SMALL_STATE(1881)] = 60517, + [SMALL_STATE(1882)] = 60585, + [SMALL_STATE(1883)] = 60653, + [SMALL_STATE(1884)] = 60725, + [SMALL_STATE(1885)] = 60793, + [SMALL_STATE(1886)] = 60861, + [SMALL_STATE(1887)] = 60933, + [SMALL_STATE(1888)] = 61005, + [SMALL_STATE(1889)] = 61085, + [SMALL_STATE(1890)] = 61167, + [SMALL_STATE(1891)] = 61249, + [SMALL_STATE(1892)] = 61317, + [SMALL_STATE(1893)] = 61405, + [SMALL_STATE(1894)] = 61497, + [SMALL_STATE(1895)] = 61591, + [SMALL_STATE(1896)] = 61687, + [SMALL_STATE(1897)] = 61787, + [SMALL_STATE(1898)] = 61889, + [SMALL_STATE(1899)] = 61959, + [SMALL_STATE(1900)] = 62029, + [SMALL_STATE(1901)] = 62135, + [SMALL_STATE(1902)] = 62243, + [SMALL_STATE(1903)] = 62311, + [SMALL_STATE(1904)] = 62379, + [SMALL_STATE(1905)] = 62487, + [SMALL_STATE(1906)] = 62555, + [SMALL_STATE(1907)] = 62631, + [SMALL_STATE(1908)] = 62705, + [SMALL_STATE(1909)] = 62809, + [SMALL_STATE(1910)] = 62899, + [SMALL_STATE(1911)] = 62983, + [SMALL_STATE(1912)] = 63053, + [SMALL_STATE(1913)] = 63120, + [SMALL_STATE(1914)] = 63187, + [SMALL_STATE(1915)] = 63254, + [SMALL_STATE(1916)] = 63325, + [SMALL_STATE(1917)] = 63392, + [SMALL_STATE(1918)] = 63459, + [SMALL_STATE(1919)] = 63530, + [SMALL_STATE(1920)] = 63597, + [SMALL_STATE(1921)] = 63664, + [SMALL_STATE(1922)] = 63735, + [SMALL_STATE(1923)] = 63802, + [SMALL_STATE(1924)] = 63869, + [SMALL_STATE(1925)] = 63948, + [SMALL_STATE(1926)] = 64029, + [SMALL_STATE(1927)] = 64110, + [SMALL_STATE(1928)] = 64177, + [SMALL_STATE(1929)] = 64244, + [SMALL_STATE(1930)] = 64311, + [SMALL_STATE(1931)] = 64378, + [SMALL_STATE(1932)] = 64445, + [SMALL_STATE(1933)] = 64512, + [SMALL_STATE(1934)] = 64579, + [SMALL_STATE(1935)] = 64646, + [SMALL_STATE(1936)] = 64759, + [SMALL_STATE(1937)] = 64826, + [SMALL_STATE(1938)] = 64899, + [SMALL_STATE(1939)] = 64972, + [SMALL_STATE(1940)] = 65045, + [SMALL_STATE(1941)] = 65112, + [SMALL_STATE(1942)] = 65179, + [SMALL_STATE(1943)] = 65246, + [SMALL_STATE(1944)] = 65313, + [SMALL_STATE(1945)] = 65400, + [SMALL_STATE(1946)] = 65491, + [SMALL_STATE(1947)] = 65584, + [SMALL_STATE(1948)] = 65679, + [SMALL_STATE(1949)] = 65778, + [SMALL_STATE(1950)] = 65879, + [SMALL_STATE(1951)] = 65984, + [SMALL_STATE(1952)] = 66091, + [SMALL_STATE(1953)] = 66198, + [SMALL_STATE(1954)] = 66273, + [SMALL_STATE(1955)] = 66346, + [SMALL_STATE(1956)] = 66449, + [SMALL_STATE(1957)] = 66538, + [SMALL_STATE(1958)] = 66621, + [SMALL_STATE(1959)] = 66690, + [SMALL_STATE(1960)] = 66799, + [SMALL_STATE(1961)] = 66866, + [SMALL_STATE(1962)] = 66935, + [SMALL_STATE(1963)] = 67004, + [SMALL_STATE(1964)] = 67071, + [SMALL_STATE(1965)] = 67138, + [SMALL_STATE(1966)] = 67205, + [SMALL_STATE(1967)] = 67274, + [SMALL_STATE(1968)] = 67341, + [SMALL_STATE(1969)] = 67408, + [SMALL_STATE(1970)] = 67475, + [SMALL_STATE(1971)] = 67542, + [SMALL_STATE(1972)] = 67609, + [SMALL_STATE(1973)] = 67676, + [SMALL_STATE(1974)] = 67743, + [SMALL_STATE(1975)] = 67810, + [SMALL_STATE(1976)] = 67877, + [SMALL_STATE(1977)] = 67944, + [SMALL_STATE(1978)] = 68011, + [SMALL_STATE(1979)] = 68078, + [SMALL_STATE(1980)] = 68149, + [SMALL_STATE(1981)] = 68216, + [SMALL_STATE(1982)] = 68283, + [SMALL_STATE(1983)] = 68350, + [SMALL_STATE(1984)] = 68417, + [SMALL_STATE(1985)] = 68488, + [SMALL_STATE(1986)] = 68555, + [SMALL_STATE(1987)] = 68622, + [SMALL_STATE(1988)] = 68689, + [SMALL_STATE(1989)] = 68756, + [SMALL_STATE(1990)] = 68823, + [SMALL_STATE(1991)] = 68890, + [SMALL_STATE(1992)] = 68957, + [SMALL_STATE(1993)] = 69024, + [SMALL_STATE(1994)] = 69091, + [SMALL_STATE(1995)] = 69158, + [SMALL_STATE(1996)] = 69225, + [SMALL_STATE(1997)] = 69294, + [SMALL_STATE(1998)] = 69365, + [SMALL_STATE(1999)] = 69432, + [SMALL_STATE(2000)] = 69499, + [SMALL_STATE(2001)] = 69566, + [SMALL_STATE(2002)] = 69633, + [SMALL_STATE(2003)] = 69704, + [SMALL_STATE(2004)] = 69771, + [SMALL_STATE(2005)] = 69838, + [SMALL_STATE(2006)] = 69905, + [SMALL_STATE(2007)] = 70014, + [SMALL_STATE(2008)] = 70081, + [SMALL_STATE(2009)] = 70190, + [SMALL_STATE(2010)] = 70259, + [SMALL_STATE(2011)] = 70328, + [SMALL_STATE(2012)] = 70401, + [SMALL_STATE(2013)] = 70470, + [SMALL_STATE(2014)] = 70539, + [SMALL_STATE(2015)] = 70610, + [SMALL_STATE(2016)] = 70677, + [SMALL_STATE(2017)] = 70748, + [SMALL_STATE(2018)] = 70815, + [SMALL_STATE(2019)] = 70882, + [SMALL_STATE(2020)] = 70969, + [SMALL_STATE(2021)] = 71036, + [SMALL_STATE(2022)] = 71109, + [SMALL_STATE(2023)] = 71176, + [SMALL_STATE(2024)] = 71243, + [SMALL_STATE(2025)] = 71310, + [SMALL_STATE(2026)] = 71377, + [SMALL_STATE(2027)] = 71490, + [SMALL_STATE(2028)] = 71563, + [SMALL_STATE(2029)] = 71636, + [SMALL_STATE(2030)] = 71703, + [SMALL_STATE(2031)] = 71770, + [SMALL_STATE(2032)] = 71837, + [SMALL_STATE(2033)] = 71904, + [SMALL_STATE(2034)] = 71971, + [SMALL_STATE(2035)] = 72038, + [SMALL_STATE(2036)] = 72105, + [SMALL_STATE(2037)] = 72172, + [SMALL_STATE(2038)] = 72239, + [SMALL_STATE(2039)] = 72306, + [SMALL_STATE(2040)] = 72373, + [SMALL_STATE(2041)] = 72440, + [SMALL_STATE(2042)] = 72507, + [SMALL_STATE(2043)] = 72574, + [SMALL_STATE(2044)] = 72641, + [SMALL_STATE(2045)] = 72712, + [SMALL_STATE(2046)] = 72783, + [SMALL_STATE(2047)] = 72850, + [SMALL_STATE(2048)] = 72917, + [SMALL_STATE(2049)] = 72984, + [SMALL_STATE(2050)] = 73051, + [SMALL_STATE(2051)] = 73118, + [SMALL_STATE(2052)] = 73185, + [SMALL_STATE(2053)] = 73252, + [SMALL_STATE(2054)] = 73319, + [SMALL_STATE(2055)] = 73386, + [SMALL_STATE(2056)] = 73453, + [SMALL_STATE(2057)] = 73520, + [SMALL_STATE(2058)] = 73587, + [SMALL_STATE(2059)] = 73654, + [SMALL_STATE(2060)] = 73721, + [SMALL_STATE(2061)] = 73788, + [SMALL_STATE(2062)] = 73855, + [SMALL_STATE(2063)] = 73922, + [SMALL_STATE(2064)] = 73989, + [SMALL_STATE(2065)] = 74056, + [SMALL_STATE(2066)] = 74123, + [SMALL_STATE(2067)] = 74190, + [SMALL_STATE(2068)] = 74257, + [SMALL_STATE(2069)] = 74324, + [SMALL_STATE(2070)] = 74391, + [SMALL_STATE(2071)] = 74458, + [SMALL_STATE(2072)] = 74527, + [SMALL_STATE(2073)] = 74600, + [SMALL_STATE(2074)] = 74709, + [SMALL_STATE(2075)] = 74780, + [SMALL_STATE(2076)] = 74847, + [SMALL_STATE(2077)] = 74960, + [SMALL_STATE(2078)] = 75031, + [SMALL_STATE(2079)] = 75110, + [SMALL_STATE(2080)] = 75191, + [SMALL_STATE(2081)] = 75272, + [SMALL_STATE(2082)] = 75339, + [SMALL_STATE(2083)] = 75406, + [SMALL_STATE(2084)] = 75477, + [SMALL_STATE(2085)] = 75560, + [SMALL_STATE(2086)] = 75651, + [SMALL_STATE(2087)] = 75718, + [SMALL_STATE(2088)] = 75811, + [SMALL_STATE(2089)] = 75906, + [SMALL_STATE(2090)] = 76005, + [SMALL_STATE(2091)] = 76072, + [SMALL_STATE(2092)] = 76139, + [SMALL_STATE(2093)] = 76240, + [SMALL_STATE(2094)] = 76345, + [SMALL_STATE(2095)] = 76452, + [SMALL_STATE(2096)] = 76561, + [SMALL_STATE(2097)] = 76628, + [SMALL_STATE(2098)] = 76695, + [SMALL_STATE(2099)] = 76762, + [SMALL_STATE(2100)] = 76829, + [SMALL_STATE(2101)] = 76896, + [SMALL_STATE(2102)] = 76963, + [SMALL_STATE(2103)] = 77030, + [SMALL_STATE(2104)] = 77097, + [SMALL_STATE(2105)] = 77164, + [SMALL_STATE(2106)] = 77231, + [SMALL_STATE(2107)] = 77298, + [SMALL_STATE(2108)] = 77405, + [SMALL_STATE(2109)] = 77480, + [SMALL_STATE(2110)] = 77553, + [SMALL_STATE(2111)] = 77656, + [SMALL_STATE(2112)] = 77745, + [SMALL_STATE(2113)] = 77812, + [SMALL_STATE(2114)] = 77879, + [SMALL_STATE(2115)] = 77950, + [SMALL_STATE(2116)] = 78021, + [SMALL_STATE(2117)] = 78092, + [SMALL_STATE(2118)] = 78201, + [SMALL_STATE(2119)] = 78272, + [SMALL_STATE(2120)] = 78339, + [SMALL_STATE(2121)] = 78406, + [SMALL_STATE(2122)] = 78473, + [SMALL_STATE(2123)] = 78540, + [SMALL_STATE(2124)] = 78607, + [SMALL_STATE(2125)] = 78674, + [SMALL_STATE(2126)] = 78741, + [SMALL_STATE(2127)] = 78810, + [SMALL_STATE(2128)] = 78877, + [SMALL_STATE(2129)] = 78946, + [SMALL_STATE(2130)] = 79013, + [SMALL_STATE(2131)] = 79082, + [SMALL_STATE(2132)] = 79149, + [SMALL_STATE(2133)] = 79216, + [SMALL_STATE(2134)] = 79283, + [SMALL_STATE(2135)] = 79350, + [SMALL_STATE(2136)] = 79417, + [SMALL_STATE(2137)] = 79484, + [SMALL_STATE(2138)] = 79551, + [SMALL_STATE(2139)] = 79618, + [SMALL_STATE(2140)] = 79685, + [SMALL_STATE(2141)] = 79752, + [SMALL_STATE(2142)] = 79823, + [SMALL_STATE(2143)] = 79890, + [SMALL_STATE(2144)] = 79957, + [SMALL_STATE(2145)] = 80070, + [SMALL_STATE(2146)] = 80139, + [SMALL_STATE(2147)] = 80208, + [SMALL_STATE(2148)] = 80275, + [SMALL_STATE(2149)] = 80342, + [SMALL_STATE(2150)] = 80409, + [SMALL_STATE(2151)] = 80476, + [SMALL_STATE(2152)] = 80547, + [SMALL_STATE(2153)] = 80656, + [SMALL_STATE(2154)] = 80723, + [SMALL_STATE(2155)] = 80790, + [SMALL_STATE(2156)] = 80859, + [SMALL_STATE(2157)] = 80926, + [SMALL_STATE(2158)] = 80993, + [SMALL_STATE(2159)] = 81060, + [SMALL_STATE(2160)] = 81127, + [SMALL_STATE(2161)] = 81194, + [SMALL_STATE(2162)] = 81261, + [SMALL_STATE(2163)] = 81328, + [SMALL_STATE(2164)] = 81395, + [SMALL_STATE(2165)] = 81462, + [SMALL_STATE(2166)] = 81529, + [SMALL_STATE(2167)] = 81596, + [SMALL_STATE(2168)] = 81663, + [SMALL_STATE(2169)] = 81730, + [SMALL_STATE(2170)] = 81797, + [SMALL_STATE(2171)] = 81864, + [SMALL_STATE(2172)] = 81931, + [SMALL_STATE(2173)] = 81998, + [SMALL_STATE(2174)] = 82065, + [SMALL_STATE(2175)] = 82132, + [SMALL_STATE(2176)] = 82201, + [SMALL_STATE(2177)] = 82268, + [SMALL_STATE(2178)] = 82339, + [SMALL_STATE(2179)] = 82406, + [SMALL_STATE(2180)] = 82473, + [SMALL_STATE(2181)] = 82540, + [SMALL_STATE(2182)] = 82607, + [SMALL_STATE(2183)] = 82674, + [SMALL_STATE(2184)] = 82741, + [SMALL_STATE(2185)] = 82808, + [SMALL_STATE(2186)] = 82875, + [SMALL_STATE(2187)] = 82942, + [SMALL_STATE(2188)] = 83009, + [SMALL_STATE(2189)] = 83076, + [SMALL_STATE(2190)] = 83143, + [SMALL_STATE(2191)] = 83210, + [SMALL_STATE(2192)] = 83277, + [SMALL_STATE(2193)] = 83344, + [SMALL_STATE(2194)] = 83411, + [SMALL_STATE(2195)] = 83478, + [SMALL_STATE(2196)] = 83545, + [SMALL_STATE(2197)] = 83612, + [SMALL_STATE(2198)] = 83679, + [SMALL_STATE(2199)] = 83746, + [SMALL_STATE(2200)] = 83813, + [SMALL_STATE(2201)] = 83880, + [SMALL_STATE(2202)] = 83951, + [SMALL_STATE(2203)] = 84022, + [SMALL_STATE(2204)] = 84089, + [SMALL_STATE(2205)] = 84156, + [SMALL_STATE(2206)] = 84223, + [SMALL_STATE(2207)] = 84290, + [SMALL_STATE(2208)] = 84357, + [SMALL_STATE(2209)] = 84424, + [SMALL_STATE(2210)] = 84491, + [SMALL_STATE(2211)] = 84558, + [SMALL_STATE(2212)] = 84625, + [SMALL_STATE(2213)] = 84692, + [SMALL_STATE(2214)] = 84759, + [SMALL_STATE(2215)] = 84826, + [SMALL_STATE(2216)] = 84895, + [SMALL_STATE(2217)] = 84962, + [SMALL_STATE(2218)] = 85029, + [SMALL_STATE(2219)] = 85096, + [SMALL_STATE(2220)] = 85163, + [SMALL_STATE(2221)] = 85230, + [SMALL_STATE(2222)] = 85297, + [SMALL_STATE(2223)] = 85364, + [SMALL_STATE(2224)] = 85431, + [SMALL_STATE(2225)] = 85500, + [SMALL_STATE(2226)] = 85567, + [SMALL_STATE(2227)] = 85634, + [SMALL_STATE(2228)] = 85701, + [SMALL_STATE(2229)] = 85768, + [SMALL_STATE(2230)] = 85835, + [SMALL_STATE(2231)] = 85902, + [SMALL_STATE(2232)] = 85969, + [SMALL_STATE(2233)] = 86036, + [SMALL_STATE(2234)] = 86103, + [SMALL_STATE(2235)] = 86170, + [SMALL_STATE(2236)] = 86237, + [SMALL_STATE(2237)] = 86304, + [SMALL_STATE(2238)] = 86371, + [SMALL_STATE(2239)] = 86438, + [SMALL_STATE(2240)] = 86505, + [SMALL_STATE(2241)] = 86572, + [SMALL_STATE(2242)] = 86643, + [SMALL_STATE(2243)] = 86710, + [SMALL_STATE(2244)] = 86777, + [SMALL_STATE(2245)] = 86844, + [SMALL_STATE(2246)] = 86911, + [SMALL_STATE(2247)] = 87020, + [SMALL_STATE(2248)] = 87087, + [SMALL_STATE(2249)] = 87154, + [SMALL_STATE(2250)] = 87221, + [SMALL_STATE(2251)] = 87288, + [SMALL_STATE(2252)] = 87355, + [SMALL_STATE(2253)] = 87422, + [SMALL_STATE(2254)] = 87489, + [SMALL_STATE(2255)] = 87556, + [SMALL_STATE(2256)] = 87623, + [SMALL_STATE(2257)] = 87690, + [SMALL_STATE(2258)] = 87757, + [SMALL_STATE(2259)] = 87824, + [SMALL_STATE(2260)] = 87891, + [SMALL_STATE(2261)] = 87958, + [SMALL_STATE(2262)] = 88025, + [SMALL_STATE(2263)] = 88092, + [SMALL_STATE(2264)] = 88159, + [SMALL_STATE(2265)] = 88225, + [SMALL_STATE(2266)] = 88291, + [SMALL_STATE(2267)] = 88357, + [SMALL_STATE(2268)] = 88427, + [SMALL_STATE(2269)] = 88493, + [SMALL_STATE(2270)] = 88559, + [SMALL_STATE(2271)] = 88625, + [SMALL_STATE(2272)] = 88691, + [SMALL_STATE(2273)] = 88757, + [SMALL_STATE(2274)] = 88823, + [SMALL_STATE(2275)] = 88889, + [SMALL_STATE(2276)] = 88955, + [SMALL_STATE(2277)] = 89071, + [SMALL_STATE(2278)] = 89137, + [SMALL_STATE(2279)] = 89245, + [SMALL_STATE(2280)] = 89311, + [SMALL_STATE(2281)] = 89377, + [SMALL_STATE(2282)] = 89443, + [SMALL_STATE(2283)] = 89513, + [SMALL_STATE(2284)] = 89579, + [SMALL_STATE(2285)] = 89645, + [SMALL_STATE(2286)] = 89711, + [SMALL_STATE(2287)] = 89777, + [SMALL_STATE(2288)] = 89843, + [SMALL_STATE(2289)] = 89909, + [SMALL_STATE(2290)] = 89975, + [SMALL_STATE(2291)] = 90041, + [SMALL_STATE(2292)] = 90107, + [SMALL_STATE(2293)] = 90173, + [SMALL_STATE(2294)] = 90239, + [SMALL_STATE(2295)] = 90305, + [SMALL_STATE(2296)] = 90371, + [SMALL_STATE(2297)] = 90437, + [SMALL_STATE(2298)] = 90507, + [SMALL_STATE(2299)] = 90573, + [SMALL_STATE(2300)] = 90639, + [SMALL_STATE(2301)] = 90705, + [SMALL_STATE(2302)] = 90771, + [SMALL_STATE(2303)] = 90837, + [SMALL_STATE(2304)] = 90903, + [SMALL_STATE(2305)] = 90969, + [SMALL_STATE(2306)] = 91035, + [SMALL_STATE(2307)] = 91101, + [SMALL_STATE(2308)] = 91167, + [SMALL_STATE(2309)] = 91237, + [SMALL_STATE(2310)] = 91303, + [SMALL_STATE(2311)] = 91369, + [SMALL_STATE(2312)] = 91435, + [SMALL_STATE(2313)] = 91517, + [SMALL_STATE(2314)] = 91605, + [SMALL_STATE(2315)] = 91707, + [SMALL_STATE(2316)] = 91773, + [SMALL_STATE(2317)] = 91845, + [SMALL_STATE(2318)] = 91919, + [SMALL_STATE(2319)] = 92025, + [SMALL_STATE(2320)] = 92131, + [SMALL_STATE(2321)] = 92197, + [SMALL_STATE(2322)] = 92301, + [SMALL_STATE(2323)] = 92401, + [SMALL_STATE(2324)] = 92499, + [SMALL_STATE(2325)] = 92593, + [SMALL_STATE(2326)] = 92685, + [SMALL_STATE(2327)] = 92775, + [SMALL_STATE(2328)] = 92861, + [SMALL_STATE(2329)] = 92941, + [SMALL_STATE(2330)] = 93021, + [SMALL_STATE(2331)] = 93099, + [SMALL_STATE(2332)] = 93169, + [SMALL_STATE(2333)] = 93235, + [SMALL_STATE(2334)] = 93301, + [SMALL_STATE(2335)] = 93367, + [SMALL_STATE(2336)] = 93433, + [SMALL_STATE(2337)] = 93499, + [SMALL_STATE(2338)] = 93565, + [SMALL_STATE(2339)] = 93631, + [SMALL_STATE(2340)] = 93697, + [SMALL_STATE(2341)] = 93763, + [SMALL_STATE(2342)] = 93829, + [SMALL_STATE(2343)] = 93895, + [SMALL_STATE(2344)] = 94003, + [SMALL_STATE(2345)] = 94069, + [SMALL_STATE(2346)] = 94135, + [SMALL_STATE(2347)] = 94205, + [SMALL_STATE(2348)] = 94271, + [SMALL_STATE(2349)] = 94337, + [SMALL_STATE(2350)] = 94403, + [SMALL_STATE(2351)] = 94469, + [SMALL_STATE(2352)] = 94535, + [SMALL_STATE(2353)] = 94601, + [SMALL_STATE(2354)] = 94667, + [SMALL_STATE(2355)] = 94733, + [SMALL_STATE(2356)] = 94799, + [SMALL_STATE(2357)] = 94865, + [SMALL_STATE(2358)] = 94931, + [SMALL_STATE(2359)] = 94997, + [SMALL_STATE(2360)] = 95063, + [SMALL_STATE(2361)] = 95129, + [SMALL_STATE(2362)] = 95195, + [SMALL_STATE(2363)] = 95261, + [SMALL_STATE(2364)] = 95327, + [SMALL_STATE(2365)] = 95393, + [SMALL_STATE(2366)] = 95459, + [SMALL_STATE(2367)] = 95525, + [SMALL_STATE(2368)] = 95591, + [SMALL_STATE(2369)] = 95657, + [SMALL_STATE(2370)] = 95727, + [SMALL_STATE(2371)] = 95805, + [SMALL_STATE(2372)] = 95885, + [SMALL_STATE(2373)] = 95965, + [SMALL_STATE(2374)] = 96051, + [SMALL_STATE(2375)] = 96117, + [SMALL_STATE(2376)] = 96183, + [SMALL_STATE(2377)] = 96249, + [SMALL_STATE(2378)] = 96319, + [SMALL_STATE(2379)] = 96385, + [SMALL_STATE(2380)] = 96451, + [SMALL_STATE(2381)] = 96517, + [SMALL_STATE(2382)] = 96583, + [SMALL_STATE(2383)] = 96649, + [SMALL_STATE(2384)] = 96715, + [SMALL_STATE(2385)] = 96781, + [SMALL_STATE(2386)] = 96847, + [SMALL_STATE(2387)] = 96913, + [SMALL_STATE(2388)] = 96979, + [SMALL_STATE(2389)] = 97045, + [SMALL_STATE(2390)] = 97111, + [SMALL_STATE(2391)] = 97201, + [SMALL_STATE(2392)] = 97293, + [SMALL_STATE(2393)] = 97387, + [SMALL_STATE(2394)] = 97485, + [SMALL_STATE(2395)] = 97585, + [SMALL_STATE(2396)] = 97689, + [SMALL_STATE(2397)] = 97755, + [SMALL_STATE(2398)] = 97861, + [SMALL_STATE(2399)] = 97967, + [SMALL_STATE(2400)] = 98041, + [SMALL_STATE(2401)] = 98113, + [SMALL_STATE(2402)] = 98179, + [SMALL_STATE(2403)] = 98281, + [SMALL_STATE(2404)] = 98369, + [SMALL_STATE(2405)] = 98451, + [SMALL_STATE(2406)] = 98517, + [SMALL_STATE(2407)] = 98583, + [SMALL_STATE(2408)] = 98649, + [SMALL_STATE(2409)] = 98715, + [SMALL_STATE(2410)] = 98781, + [SMALL_STATE(2411)] = 98847, + [SMALL_STATE(2412)] = 98913, + [SMALL_STATE(2413)] = 98979, + [SMALL_STATE(2414)] = 99045, + [SMALL_STATE(2415)] = 99111, + [SMALL_STATE(2416)] = 99177, + [SMALL_STATE(2417)] = 99243, + [SMALL_STATE(2418)] = 99309, + [SMALL_STATE(2419)] = 99375, + [SMALL_STATE(2420)] = 99441, + [SMALL_STATE(2421)] = 99507, + [SMALL_STATE(2422)] = 99573, + [SMALL_STATE(2423)] = 99643, + [SMALL_STATE(2424)] = 99709, + [SMALL_STATE(2425)] = 99775, + [SMALL_STATE(2426)] = 99841, + [SMALL_STATE(2427)] = 99907, + [SMALL_STATE(2428)] = 99973, + [SMALL_STATE(2429)] = 100039, + [SMALL_STATE(2430)] = 100105, + [SMALL_STATE(2431)] = 100171, + [SMALL_STATE(2432)] = 100237, + [SMALL_STATE(2433)] = 100303, + [SMALL_STATE(2434)] = 100369, + [SMALL_STATE(2435)] = 100435, + [SMALL_STATE(2436)] = 100501, + [SMALL_STATE(2437)] = 100567, + [SMALL_STATE(2438)] = 100637, + [SMALL_STATE(2439)] = 100703, + [SMALL_STATE(2440)] = 100811, + [SMALL_STATE(2441)] = 100877, + [SMALL_STATE(2442)] = 100943, + [SMALL_STATE(2443)] = 101009, + [SMALL_STATE(2444)] = 101075, + [SMALL_STATE(2445)] = 101141, + [SMALL_STATE(2446)] = 101207, + [SMALL_STATE(2447)] = 101273, + [SMALL_STATE(2448)] = 101339, + [SMALL_STATE(2449)] = 101405, + [SMALL_STATE(2450)] = 101471, + [SMALL_STATE(2451)] = 101537, + [SMALL_STATE(2452)] = 101603, + [SMALL_STATE(2453)] = 101669, + [SMALL_STATE(2454)] = 101735, + [SMALL_STATE(2455)] = 101801, + [SMALL_STATE(2456)] = 101867, + [SMALL_STATE(2457)] = 101933, + [SMALL_STATE(2458)] = 101999, + [SMALL_STATE(2459)] = 102065, + [SMALL_STATE(2460)] = 102173, + [SMALL_STATE(2461)] = 102289, + [SMALL_STATE(2462)] = 102355, + [SMALL_STATE(2463)] = 102421, + [SMALL_STATE(2464)] = 102491, + [SMALL_STATE(2465)] = 102557, + [SMALL_STATE(2466)] = 102623, + [SMALL_STATE(2467)] = 102689, + [SMALL_STATE(2468)] = 102755, + [SMALL_STATE(2469)] = 102821, + [SMALL_STATE(2470)] = 102887, + [SMALL_STATE(2471)] = 102953, + [SMALL_STATE(2472)] = 103019, + [SMALL_STATE(2473)] = 103085, + [SMALL_STATE(2474)] = 103151, + [SMALL_STATE(2475)] = 103217, + [SMALL_STATE(2476)] = 103283, + [SMALL_STATE(2477)] = 103349, + [SMALL_STATE(2478)] = 103415, + [SMALL_STATE(2479)] = 103481, + [SMALL_STATE(2480)] = 103547, + [SMALL_STATE(2481)] = 103613, + [SMALL_STATE(2482)] = 103729, + [SMALL_STATE(2483)] = 103797, + [SMALL_STATE(2484)] = 103863, + [SMALL_STATE(2485)] = 103929, + [SMALL_STATE(2486)] = 103997, + [SMALL_STATE(2487)] = 104105, + [SMALL_STATE(2488)] = 104171, + [SMALL_STATE(2489)] = 104237, + [SMALL_STATE(2490)] = 104307, + [SMALL_STATE(2491)] = 104373, + [SMALL_STATE(2492)] = 104481, + [SMALL_STATE(2493)] = 104547, + [SMALL_STATE(2494)] = 104613, + [SMALL_STATE(2495)] = 104679, + [SMALL_STATE(2496)] = 104745, + [SMALL_STATE(2497)] = 104811, + [SMALL_STATE(2498)] = 104877, + [SMALL_STATE(2499)] = 104943, + [SMALL_STATE(2500)] = 105009, + [SMALL_STATE(2501)] = 105075, + [SMALL_STATE(2502)] = 105145, + [SMALL_STATE(2503)] = 105211, + [SMALL_STATE(2504)] = 105281, + [SMALL_STATE(2505)] = 105347, + [SMALL_STATE(2506)] = 105413, + [SMALL_STATE(2507)] = 105479, + [SMALL_STATE(2508)] = 105545, + [SMALL_STATE(2509)] = 105611, + [SMALL_STATE(2510)] = 105677, + [SMALL_STATE(2511)] = 105743, + [SMALL_STATE(2512)] = 105851, + [SMALL_STATE(2513)] = 105917, + [SMALL_STATE(2514)] = 105983, + [SMALL_STATE(2515)] = 106049, + [SMALL_STATE(2516)] = 106157, + [SMALL_STATE(2517)] = 106227, + [SMALL_STATE(2518)] = 106293, + [SMALL_STATE(2519)] = 106359, + [SMALL_STATE(2520)] = 106425, + [SMALL_STATE(2521)] = 106491, + [SMALL_STATE(2522)] = 106557, + [SMALL_STATE(2523)] = 106639, + [SMALL_STATE(2524)] = 106727, + [SMALL_STATE(2525)] = 106829, + [SMALL_STATE(2526)] = 106901, + [SMALL_STATE(2527)] = 106975, + [SMALL_STATE(2528)] = 107081, + [SMALL_STATE(2529)] = 107187, + [SMALL_STATE(2530)] = 107291, + [SMALL_STATE(2531)] = 107391, + [SMALL_STATE(2532)] = 107489, + [SMALL_STATE(2533)] = 107583, + [SMALL_STATE(2534)] = 107675, + [SMALL_STATE(2535)] = 107765, + [SMALL_STATE(2536)] = 107851, + [SMALL_STATE(2537)] = 107931, + [SMALL_STATE(2538)] = 108011, + [SMALL_STATE(2539)] = 108089, + [SMALL_STATE(2540)] = 108155, + [SMALL_STATE(2541)] = 108221, + [SMALL_STATE(2542)] = 108287, + [SMALL_STATE(2543)] = 108353, + [SMALL_STATE(2544)] = 108419, + [SMALL_STATE(2545)] = 108485, + [SMALL_STATE(2546)] = 108551, + [SMALL_STATE(2547)] = 108617, + [SMALL_STATE(2548)] = 108683, + [SMALL_STATE(2549)] = 108749, + [SMALL_STATE(2550)] = 108815, + [SMALL_STATE(2551)] = 108881, + [SMALL_STATE(2552)] = 108947, + [SMALL_STATE(2553)] = 109013, + [SMALL_STATE(2554)] = 109079, + [SMALL_STATE(2555)] = 109145, + [SMALL_STATE(2556)] = 109211, + [SMALL_STATE(2557)] = 109277, + [SMALL_STATE(2558)] = 109343, + [SMALL_STATE(2559)] = 109409, + [SMALL_STATE(2560)] = 109475, + [SMALL_STATE(2561)] = 109541, + [SMALL_STATE(2562)] = 109607, + [SMALL_STATE(2563)] = 109673, + [SMALL_STATE(2564)] = 109739, + [SMALL_STATE(2565)] = 109805, + [SMALL_STATE(2566)] = 109871, + [SMALL_STATE(2567)] = 109937, + [SMALL_STATE(2568)] = 110003, + [SMALL_STATE(2569)] = 110069, + [SMALL_STATE(2570)] = 110135, + [SMALL_STATE(2571)] = 110201, + [SMALL_STATE(2572)] = 110267, + [SMALL_STATE(2573)] = 110333, + [SMALL_STATE(2574)] = 110399, + [SMALL_STATE(2575)] = 110467, + [SMALL_STATE(2576)] = 110533, + [SMALL_STATE(2577)] = 110599, + [SMALL_STATE(2578)] = 110665, + [SMALL_STATE(2579)] = 110731, + [SMALL_STATE(2580)] = 110797, + [SMALL_STATE(2581)] = 110863, + [SMALL_STATE(2582)] = 110929, + [SMALL_STATE(2583)] = 110999, + [SMALL_STATE(2584)] = 111065, + [SMALL_STATE(2585)] = 111131, + [SMALL_STATE(2586)] = 111203, + [SMALL_STATE(2587)] = 111275, + [SMALL_STATE(2588)] = 111341, + [SMALL_STATE(2589)] = 111413, + [SMALL_STATE(2590)] = 111483, + [SMALL_STATE(2591)] = 111549, + [SMALL_STATE(2592)] = 111615, + [SMALL_STATE(2593)] = 111723, + [SMALL_STATE(2594)] = 111789, + [SMALL_STATE(2595)] = 111859, + [SMALL_STATE(2596)] = 111929, + [SMALL_STATE(2597)] = 111995, + [SMALL_STATE(2598)] = 112061, + [SMALL_STATE(2599)] = 112173, + [SMALL_STATE(2600)] = 112289, + [SMALL_STATE(2601)] = 112397, + [SMALL_STATE(2602)] = 112505, + [SMALL_STATE(2603)] = 112571, + [SMALL_STATE(2604)] = 112683, + [SMALL_STATE(2605)] = 112753, + [SMALL_STATE(2606)] = 112823, + [SMALL_STATE(2607)] = 112889, + [SMALL_STATE(2608)] = 112971, + [SMALL_STATE(2609)] = 113059, + [SMALL_STATE(2610)] = 113161, + [SMALL_STATE(2611)] = 113233, + [SMALL_STATE(2612)] = 113307, + [SMALL_STATE(2613)] = 113413, + [SMALL_STATE(2614)] = 113519, + [SMALL_STATE(2615)] = 113623, + [SMALL_STATE(2616)] = 113723, + [SMALL_STATE(2617)] = 113821, + [SMALL_STATE(2618)] = 113915, + [SMALL_STATE(2619)] = 114007, + [SMALL_STATE(2620)] = 114097, + [SMALL_STATE(2621)] = 114183, + [SMALL_STATE(2622)] = 114263, + [SMALL_STATE(2623)] = 114343, + [SMALL_STATE(2624)] = 114421, + [SMALL_STATE(2625)] = 114487, + [SMALL_STATE(2626)] = 114553, + [SMALL_STATE(2627)] = 114619, + [SMALL_STATE(2628)] = 114687, + [SMALL_STATE(2629)] = 114757, + [SMALL_STATE(2630)] = 114827, + [SMALL_STATE(2631)] = 114897, + [SMALL_STATE(2632)] = 115005, + [SMALL_STATE(2633)] = 115075, + [SMALL_STATE(2634)] = 115191, + [SMALL_STATE(2635)] = 115257, + [SMALL_STATE(2636)] = 115323, + [SMALL_STATE(2637)] = 115389, + [SMALL_STATE(2638)] = 115457, + [SMALL_STATE(2639)] = 115525, + [SMALL_STATE(2640)] = 115593, + [SMALL_STATE(2641)] = 115663, + [SMALL_STATE(2642)] = 115729, + [SMALL_STATE(2643)] = 115795, + [SMALL_STATE(2644)] = 115861, + [SMALL_STATE(2645)] = 115977, + [SMALL_STATE(2646)] = 116047, + [SMALL_STATE(2647)] = 116117, + [SMALL_STATE(2648)] = 116187, + [SMALL_STATE(2649)] = 116253, + [SMALL_STATE(2650)] = 116323, + [SMALL_STATE(2651)] = 116393, + [SMALL_STATE(2652)] = 116463, + [SMALL_STATE(2653)] = 116533, + [SMALL_STATE(2654)] = 116598, + [SMALL_STATE(2655)] = 116679, + [SMALL_STATE(2656)] = 116744, + [SMALL_STATE(2657)] = 116821, + [SMALL_STATE(2658)] = 116900, + [SMALL_STATE(2659)] = 116979, + [SMALL_STATE(2660)] = 117064, + [SMALL_STATE(2661)] = 117153, + [SMALL_STATE(2662)] = 117244, + [SMALL_STATE(2663)] = 117337, + [SMALL_STATE(2664)] = 117402, + [SMALL_STATE(2665)] = 117467, + [SMALL_STATE(2666)] = 117564, + [SMALL_STATE(2667)] = 117663, + [SMALL_STATE(2668)] = 117766, + [SMALL_STATE(2669)] = 117871, + [SMALL_STATE(2670)] = 117936, + [SMALL_STATE(2671)] = 118041, + [SMALL_STATE(2672)] = 118108, + [SMALL_STATE(2673)] = 118175, + [SMALL_STATE(2674)] = 118248, + [SMALL_STATE(2675)] = 118317, + [SMALL_STATE(2676)] = 118388, + [SMALL_STATE(2677)] = 118489, + [SMALL_STATE(2678)] = 118576, + [SMALL_STATE(2679)] = 118641, + [SMALL_STATE(2680)] = 118706, + [SMALL_STATE(2681)] = 118771, + [SMALL_STATE(2682)] = 118836, + [SMALL_STATE(2683)] = 118903, + [SMALL_STATE(2684)] = 118968, + [SMALL_STATE(2685)] = 119033, + [SMALL_STATE(2686)] = 119098, + [SMALL_STATE(2687)] = 119163, + [SMALL_STATE(2688)] = 119228, + [SMALL_STATE(2689)] = 119293, + [SMALL_STATE(2690)] = 119358, + [SMALL_STATE(2691)] = 119423, + [SMALL_STATE(2692)] = 119488, + [SMALL_STATE(2693)] = 119553, + [SMALL_STATE(2694)] = 119618, + [SMALL_STATE(2695)] = 119683, + [SMALL_STATE(2696)] = 119748, + [SMALL_STATE(2697)] = 119813, + [SMALL_STATE(2698)] = 119878, + [SMALL_STATE(2699)] = 119943, + [SMALL_STATE(2700)] = 120008, + [SMALL_STATE(2701)] = 120073, + [SMALL_STATE(2702)] = 120138, + [SMALL_STATE(2703)] = 120203, + [SMALL_STATE(2704)] = 120268, + [SMALL_STATE(2705)] = 120333, + [SMALL_STATE(2706)] = 120398, + [SMALL_STATE(2707)] = 120463, + [SMALL_STATE(2708)] = 120528, + [SMALL_STATE(2709)] = 120593, + [SMALL_STATE(2710)] = 120658, + [SMALL_STATE(2711)] = 120723, + [SMALL_STATE(2712)] = 120788, + [SMALL_STATE(2713)] = 120853, + [SMALL_STATE(2714)] = 120918, + [SMALL_STATE(2715)] = 120983, + [SMALL_STATE(2716)] = 121048, + [SMALL_STATE(2717)] = 121113, + [SMALL_STATE(2718)] = 121178, + [SMALL_STATE(2719)] = 121243, + [SMALL_STATE(2720)] = 121308, + [SMALL_STATE(2721)] = 121373, + [SMALL_STATE(2722)] = 121438, + [SMALL_STATE(2723)] = 121503, + [SMALL_STATE(2724)] = 121568, + [SMALL_STATE(2725)] = 121633, + [SMALL_STATE(2726)] = 121698, + [SMALL_STATE(2727)] = 121767, + [SMALL_STATE(2728)] = 121836, + [SMALL_STATE(2729)] = 121905, + [SMALL_STATE(2730)] = 121974, + [SMALL_STATE(2731)] = 122043, + [SMALL_STATE(2732)] = 122150, + [SMALL_STATE(2733)] = 122215, + [SMALL_STATE(2734)] = 122284, + [SMALL_STATE(2735)] = 122353, + [SMALL_STATE(2736)] = 122460, + [SMALL_STATE(2737)] = 122527, + [SMALL_STATE(2738)] = 122628, + [SMALL_STATE(2739)] = 122697, + [SMALL_STATE(2740)] = 122766, + [SMALL_STATE(2741)] = 122843, + [SMALL_STATE(2742)] = 122922, + [SMALL_STATE(2743)] = 123001, + [SMALL_STATE(2744)] = 123084, + [SMALL_STATE(2745)] = 123171, + [SMALL_STATE(2746)] = 123260, + [SMALL_STATE(2747)] = 123351, + [SMALL_STATE(2748)] = 123446, + [SMALL_STATE(2749)] = 123511, + [SMALL_STATE(2750)] = 123608, + [SMALL_STATE(2751)] = 123673, + [SMALL_STATE(2752)] = 123738, + [SMALL_STATE(2753)] = 123803, + [SMALL_STATE(2754)] = 123868, + [SMALL_STATE(2755)] = 123971, + [SMALL_STATE(2756)] = 124074, + [SMALL_STATE(2757)] = 124147, + [SMALL_STATE(2758)] = 124218, + [SMALL_STATE(2759)] = 124283, + [SMALL_STATE(2760)] = 124382, + [SMALL_STATE(2761)] = 124467, + [SMALL_STATE(2762)] = 124548, + [SMALL_STATE(2763)] = 124613, + [SMALL_STATE(2764)] = 124678, + [SMALL_STATE(2765)] = 124743, + [SMALL_STATE(2766)] = 124808, + [SMALL_STATE(2767)] = 124873, + [SMALL_STATE(2768)] = 124938, + [SMALL_STATE(2769)] = 125003, + [SMALL_STATE(2770)] = 125068, + [SMALL_STATE(2771)] = 125133, + [SMALL_STATE(2772)] = 125198, + [SMALL_STATE(2773)] = 125263, + [SMALL_STATE(2774)] = 125328, + [SMALL_STATE(2775)] = 125393, + [SMALL_STATE(2776)] = 125458, + [SMALL_STATE(2777)] = 125523, + [SMALL_STATE(2778)] = 125588, + [SMALL_STATE(2779)] = 125653, + [SMALL_STATE(2780)] = 125718, + [SMALL_STATE(2781)] = 125783, + [SMALL_STATE(2782)] = 125848, + [SMALL_STATE(2783)] = 125913, + [SMALL_STATE(2784)] = 125978, + [SMALL_STATE(2785)] = 126043, + [SMALL_STATE(2786)] = 126148, + [SMALL_STATE(2787)] = 126213, + [SMALL_STATE(2788)] = 126278, + [SMALL_STATE(2789)] = 126343, + [SMALL_STATE(2790)] = 126408, + [SMALL_STATE(2791)] = 126473, + [SMALL_STATE(2792)] = 126538, + [SMALL_STATE(2793)] = 126603, + [SMALL_STATE(2794)] = 126668, + [SMALL_STATE(2795)] = 126733, + [SMALL_STATE(2796)] = 126798, + [SMALL_STATE(2797)] = 126863, + [SMALL_STATE(2798)] = 126928, + [SMALL_STATE(2799)] = 126993, + [SMALL_STATE(2800)] = 127058, + [SMALL_STATE(2801)] = 127123, + [SMALL_STATE(2802)] = 127188, + [SMALL_STATE(2803)] = 127253, + [SMALL_STATE(2804)] = 127318, + [SMALL_STATE(2805)] = 127383, + [SMALL_STATE(2806)] = 127448, + [SMALL_STATE(2807)] = 127513, + [SMALL_STATE(2808)] = 127578, + [SMALL_STATE(2809)] = 127647, + [SMALL_STATE(2810)] = 127712, + [SMALL_STATE(2811)] = 127777, + [SMALL_STATE(2812)] = 127842, + [SMALL_STATE(2813)] = 127907, + [SMALL_STATE(2814)] = 127972, + [SMALL_STATE(2815)] = 128037, + [SMALL_STATE(2816)] = 128102, + [SMALL_STATE(2817)] = 128167, + [SMALL_STATE(2818)] = 128232, + [SMALL_STATE(2819)] = 128297, + [SMALL_STATE(2820)] = 128362, + [SMALL_STATE(2821)] = 128427, + [SMALL_STATE(2822)] = 128494, + [SMALL_STATE(2823)] = 128559, + [SMALL_STATE(2824)] = 128624, + [SMALL_STATE(2825)] = 128731, + [SMALL_STATE(2826)] = 128796, + [SMALL_STATE(2827)] = 128861, + [SMALL_STATE(2828)] = 128926, + [SMALL_STATE(2829)] = 128991, + [SMALL_STATE(2830)] = 129056, + [SMALL_STATE(2831)] = 129121, + [SMALL_STATE(2832)] = 129186, + [SMALL_STATE(2833)] = 129251, + [SMALL_STATE(2834)] = 129316, + [SMALL_STATE(2835)] = 129381, + [SMALL_STATE(2836)] = 129446, + [SMALL_STATE(2837)] = 129511, + [SMALL_STATE(2838)] = 129576, + [SMALL_STATE(2839)] = 129641, + [SMALL_STATE(2840)] = 129706, + [SMALL_STATE(2841)] = 129771, + [SMALL_STATE(2842)] = 129836, + [SMALL_STATE(2843)] = 129905, + [SMALL_STATE(2844)] = 129982, + [SMALL_STATE(2845)] = 130061, + [SMALL_STATE(2846)] = 130140, + [SMALL_STATE(2847)] = 130225, + [SMALL_STATE(2848)] = 130314, + [SMALL_STATE(2849)] = 130405, + [SMALL_STATE(2850)] = 130498, + [SMALL_STATE(2851)] = 130595, + [SMALL_STATE(2852)] = 130694, + [SMALL_STATE(2853)] = 130797, + [SMALL_STATE(2854)] = 130902, + [SMALL_STATE(2855)] = 130967, + [SMALL_STATE(2856)] = 131032, + [SMALL_STATE(2857)] = 131097, + [SMALL_STATE(2858)] = 131162, + [SMALL_STATE(2859)] = 131267, + [SMALL_STATE(2860)] = 131340, + [SMALL_STATE(2861)] = 131411, + [SMALL_STATE(2862)] = 131512, + [SMALL_STATE(2863)] = 131599, + [SMALL_STATE(2864)] = 131680, + [SMALL_STATE(2865)] = 131745, + [SMALL_STATE(2866)] = 131850, + [SMALL_STATE(2867)] = 131915, + [SMALL_STATE(2868)] = 131980, + [SMALL_STATE(2869)] = 132049, + [SMALL_STATE(2870)] = 132156, + [SMALL_STATE(2871)] = 132221, + [SMALL_STATE(2872)] = 132286, + [SMALL_STATE(2873)] = 132351, + [SMALL_STATE(2874)] = 132416, + [SMALL_STATE(2875)] = 132481, + [SMALL_STATE(2876)] = 132546, + [SMALL_STATE(2877)] = 132611, + [SMALL_STATE(2878)] = 132676, + [SMALL_STATE(2879)] = 132741, + [SMALL_STATE(2880)] = 132806, + [SMALL_STATE(2881)] = 132871, + [SMALL_STATE(2882)] = 132936, + [SMALL_STATE(2883)] = 133001, + [SMALL_STATE(2884)] = 133066, + [SMALL_STATE(2885)] = 133131, + [SMALL_STATE(2886)] = 133236, + [SMALL_STATE(2887)] = 133301, + [SMALL_STATE(2888)] = 133366, + [SMALL_STATE(2889)] = 133431, + [SMALL_STATE(2890)] = 133496, + [SMALL_STATE(2891)] = 133561, + [SMALL_STATE(2892)] = 133626, + [SMALL_STATE(2893)] = 133691, + [SMALL_STATE(2894)] = 133756, + [SMALL_STATE(2895)] = 133821, + [SMALL_STATE(2896)] = 133886, + [SMALL_STATE(2897)] = 133951, + [SMALL_STATE(2898)] = 134016, + [SMALL_STATE(2899)] = 134081, + [SMALL_STATE(2900)] = 134150, + [SMALL_STATE(2901)] = 134215, + [SMALL_STATE(2902)] = 134280, + [SMALL_STATE(2903)] = 134345, + [SMALL_STATE(2904)] = 134410, + [SMALL_STATE(2905)] = 134475, + [SMALL_STATE(2906)] = 134540, + [SMALL_STATE(2907)] = 134605, + [SMALL_STATE(2908)] = 134670, + [SMALL_STATE(2909)] = 134735, + [SMALL_STATE(2910)] = 134800, + [SMALL_STATE(2911)] = 134865, + [SMALL_STATE(2912)] = 134930, + [SMALL_STATE(2913)] = 134995, + [SMALL_STATE(2914)] = 135060, + [SMALL_STATE(2915)] = 135125, + [SMALL_STATE(2916)] = 135190, + [SMALL_STATE(2917)] = 135255, + [SMALL_STATE(2918)] = 135320, + [SMALL_STATE(2919)] = 135385, + [SMALL_STATE(2920)] = 135450, + [SMALL_STATE(2921)] = 135515, + [SMALL_STATE(2922)] = 135580, + [SMALL_STATE(2923)] = 135657, + [SMALL_STATE(2924)] = 135722, + [SMALL_STATE(2925)] = 135801, + [SMALL_STATE(2926)] = 135866, + [SMALL_STATE(2927)] = 135945, + [SMALL_STATE(2928)] = 136030, + [SMALL_STATE(2929)] = 136095, + [SMALL_STATE(2930)] = 136184, + [SMALL_STATE(2931)] = 136275, + [SMALL_STATE(2932)] = 136342, + [SMALL_STATE(2933)] = 136435, + [SMALL_STATE(2934)] = 136542, + [SMALL_STATE(2935)] = 136649, + [SMALL_STATE(2936)] = 136746, + [SMALL_STATE(2937)] = 136811, + [SMALL_STATE(2938)] = 136876, + [SMALL_STATE(2939)] = 136975, + [SMALL_STATE(2940)] = 137078, + [SMALL_STATE(2941)] = 137143, + [SMALL_STATE(2942)] = 137208, + [SMALL_STATE(2943)] = 137273, + [SMALL_STATE(2944)] = 137378, + [SMALL_STATE(2945)] = 137483, + [SMALL_STATE(2946)] = 137556, + [SMALL_STATE(2947)] = 137621, + [SMALL_STATE(2948)] = 137686, + [SMALL_STATE(2949)] = 137757, + [SMALL_STATE(2950)] = 137822, + [SMALL_STATE(2951)] = 137887, + [SMALL_STATE(2952)] = 137952, + [SMALL_STATE(2953)] = 138017, + [SMALL_STATE(2954)] = 138082, + [SMALL_STATE(2955)] = 138183, + [SMALL_STATE(2956)] = 138270, + [SMALL_STATE(2957)] = 138335, + [SMALL_STATE(2958)] = 138400, + [SMALL_STATE(2959)] = 138481, + [SMALL_STATE(2960)] = 138546, + [SMALL_STATE(2961)] = 138611, + [SMALL_STATE(2962)] = 138718, + [SMALL_STATE(2963)] = 138783, + [SMALL_STATE(2964)] = 138848, + [SMALL_STATE(2965)] = 138913, + [SMALL_STATE(2966)] = 138982, + [SMALL_STATE(2967)] = 139051, + [SMALL_STATE(2968)] = 139120, + [SMALL_STATE(2969)] = 139185, + [SMALL_STATE(2970)] = 139250, + [SMALL_STATE(2971)] = 139315, + [SMALL_STATE(2972)] = 139380, + [SMALL_STATE(2973)] = 139445, + [SMALL_STATE(2974)] = 139510, + [SMALL_STATE(2975)] = 139575, + [SMALL_STATE(2976)] = 139640, + [SMALL_STATE(2977)] = 139709, + [SMALL_STATE(2978)] = 139774, + [SMALL_STATE(2979)] = 139839, + [SMALL_STATE(2980)] = 139904, + [SMALL_STATE(2981)] = 139969, + [SMALL_STATE(2982)] = 140034, + [SMALL_STATE(2983)] = 140103, + [SMALL_STATE(2984)] = 140168, + [SMALL_STATE(2985)] = 140233, + [SMALL_STATE(2986)] = 140298, + [SMALL_STATE(2987)] = 140405, + [SMALL_STATE(2988)] = 140470, + [SMALL_STATE(2989)] = 140535, + [SMALL_STATE(2990)] = 140600, + [SMALL_STATE(2991)] = 140665, + [SMALL_STATE(2992)] = 140730, + [SMALL_STATE(2993)] = 140795, + [SMALL_STATE(2994)] = 140860, + [SMALL_STATE(2995)] = 140969, + [SMALL_STATE(2996)] = 141034, + [SMALL_STATE(2997)] = 141099, + [SMALL_STATE(2998)] = 141164, + [SMALL_STATE(2999)] = 141229, + [SMALL_STATE(3000)] = 141294, + [SMALL_STATE(3001)] = 141361, + [SMALL_STATE(3002)] = 141428, + [SMALL_STATE(3003)] = 141493, + [SMALL_STATE(3004)] = 141558, + [SMALL_STATE(3005)] = 141623, + [SMALL_STATE(3006)] = 141688, + [SMALL_STATE(3007)] = 141753, + [SMALL_STATE(3008)] = 141818, + [SMALL_STATE(3009)] = 141882, + [SMALL_STATE(3010)] = 141946, + [SMALL_STATE(3011)] = 142010, + [SMALL_STATE(3012)] = 142074, + [SMALL_STATE(3013)] = 142138, + [SMALL_STATE(3014)] = 142202, + [SMALL_STATE(3015)] = 142266, + [SMALL_STATE(3016)] = 142330, + [SMALL_STATE(3017)] = 142394, + [SMALL_STATE(3018)] = 142458, + [SMALL_STATE(3019)] = 142522, + [SMALL_STATE(3020)] = 142586, + [SMALL_STATE(3021)] = 142650, + [SMALL_STATE(3022)] = 142714, + [SMALL_STATE(3023)] = 142820, + [SMALL_STATE(3024)] = 142884, + [SMALL_STATE(3025)] = 142990, + [SMALL_STATE(3026)] = 143058, + [SMALL_STATE(3027)] = 143126, + [SMALL_STATE(3028)] = 143202, + [SMALL_STATE(3029)] = 143280, + [SMALL_STATE(3030)] = 143358, + [SMALL_STATE(3031)] = 143442, + [SMALL_STATE(3032)] = 143530, + [SMALL_STATE(3033)] = 143620, + [SMALL_STATE(3034)] = 143712, + [SMALL_STATE(3035)] = 143808, + [SMALL_STATE(3036)] = 143906, + [SMALL_STATE(3037)] = 143970, + [SMALL_STATE(3038)] = 144034, + [SMALL_STATE(3039)] = 144136, + [SMALL_STATE(3040)] = 144200, + [SMALL_STATE(3041)] = 144264, + [SMALL_STATE(3042)] = 144328, + [SMALL_STATE(3043)] = 144392, + [SMALL_STATE(3044)] = 144496, + [SMALL_STATE(3045)] = 144600, + [SMALL_STATE(3046)] = 144672, + [SMALL_STATE(3047)] = 144736, + [SMALL_STATE(3048)] = 144806, + [SMALL_STATE(3049)] = 144906, + [SMALL_STATE(3050)] = 144992, + [SMALL_STATE(3051)] = 145072, + [SMALL_STATE(3052)] = 145136, + [SMALL_STATE(3053)] = 145200, + [SMALL_STATE(3054)] = 145264, + [SMALL_STATE(3055)] = 145328, + [SMALL_STATE(3056)] = 145392, + [SMALL_STATE(3057)] = 145456, + [SMALL_STATE(3058)] = 145522, + [SMALL_STATE(3059)] = 145588, + [SMALL_STATE(3060)] = 145696, + [SMALL_STATE(3061)] = 145760, + [SMALL_STATE(3062)] = 145824, + [SMALL_STATE(3063)] = 145892, + [SMALL_STATE(3064)] = 145998, + [SMALL_STATE(3065)] = 146062, + [SMALL_STATE(3066)] = 146168, + [SMALL_STATE(3067)] = 146236, + [SMALL_STATE(3068)] = 146300, + [SMALL_STATE(3069)] = 146364, + [SMALL_STATE(3070)] = 146472, + [SMALL_STATE(3071)] = 146536, + [SMALL_STATE(3072)] = 146600, + [SMALL_STATE(3073)] = 146664, + [SMALL_STATE(3074)] = 146728, + [SMALL_STATE(3075)] = 146792, + [SMALL_STATE(3076)] = 146856, + [SMALL_STATE(3077)] = 146922, + [SMALL_STATE(3078)] = 146986, + [SMALL_STATE(3079)] = 147050, + [SMALL_STATE(3080)] = 147118, + [SMALL_STATE(3081)] = 147182, + [SMALL_STATE(3082)] = 147246, + [SMALL_STATE(3083)] = 147310, + [SMALL_STATE(3084)] = 147374, + [SMALL_STATE(3085)] = 147480, + [SMALL_STATE(3086)] = 147584, + [SMALL_STATE(3087)] = 147648, + [SMALL_STATE(3088)] = 147712, + [SMALL_STATE(3089)] = 147776, + [SMALL_STATE(3090)] = 147840, + [SMALL_STATE(3091)] = 147904, + [SMALL_STATE(3092)] = 147968, + [SMALL_STATE(3093)] = 148032, + [SMALL_STATE(3094)] = 148096, + [SMALL_STATE(3095)] = 148164, + [SMALL_STATE(3096)] = 148232, + [SMALL_STATE(3097)] = 148300, + [SMALL_STATE(3098)] = 148364, + [SMALL_STATE(3099)] = 148428, + [SMALL_STATE(3100)] = 148534, + [SMALL_STATE(3101)] = 148602, + [SMALL_STATE(3102)] = 148670, + [SMALL_STATE(3103)] = 148738, + [SMALL_STATE(3104)] = 148802, + [SMALL_STATE(3105)] = 148878, + [SMALL_STATE(3106)] = 148956, + [SMALL_STATE(3107)] = 149020, + [SMALL_STATE(3108)] = 149084, + [SMALL_STATE(3109)] = 149152, + [SMALL_STATE(3110)] = 149230, + [SMALL_STATE(3111)] = 149294, + [SMALL_STATE(3112)] = 149358, + [SMALL_STATE(3113)] = 149422, + [SMALL_STATE(3114)] = 149486, + [SMALL_STATE(3115)] = 149550, + [SMALL_STATE(3116)] = 149614, + [SMALL_STATE(3117)] = 149698, + [SMALL_STATE(3118)] = 149762, + [SMALL_STATE(3119)] = 149850, + [SMALL_STATE(3120)] = 149914, + [SMALL_STATE(3121)] = 149978, + [SMALL_STATE(3122)] = 150068, + [SMALL_STATE(3123)] = 150132, + [SMALL_STATE(3124)] = 150196, + [SMALL_STATE(3125)] = 150260, + [SMALL_STATE(3126)] = 150324, + [SMALL_STATE(3127)] = 150388, + [SMALL_STATE(3128)] = 150452, + [SMALL_STATE(3129)] = 150516, + [SMALL_STATE(3130)] = 150580, + [SMALL_STATE(3131)] = 150644, + [SMALL_STATE(3132)] = 150708, + [SMALL_STATE(3133)] = 150772, + [SMALL_STATE(3134)] = 150836, + [SMALL_STATE(3135)] = 150922, + [SMALL_STATE(3136)] = 150986, + [SMALL_STATE(3137)] = 151050, + [SMALL_STATE(3138)] = 151150, + [SMALL_STATE(3139)] = 151214, + [SMALL_STATE(3140)] = 151278, + [SMALL_STATE(3141)] = 151342, + [SMALL_STATE(3142)] = 151406, + [SMALL_STATE(3143)] = 151498, + [SMALL_STATE(3144)] = 151562, + [SMALL_STATE(3145)] = 151626, + [SMALL_STATE(3146)] = 151722, + [SMALL_STATE(3147)] = 151786, + [SMALL_STATE(3148)] = 151850, + [SMALL_STATE(3149)] = 151948, + [SMALL_STATE(3150)] = 152012, + [SMALL_STATE(3151)] = 152114, + [SMALL_STATE(3152)] = 152218, + [SMALL_STATE(3153)] = 152322, + [SMALL_STATE(3154)] = 152394, + [SMALL_STATE(3155)] = 152502, + [SMALL_STATE(3156)] = 152566, + [SMALL_STATE(3157)] = 152638, + [SMALL_STATE(3158)] = 152702, + [SMALL_STATE(3159)] = 152772, + [SMALL_STATE(3160)] = 152836, + [SMALL_STATE(3161)] = 152936, + [SMALL_STATE(3162)] = 153022, + [SMALL_STATE(3163)] = 153102, + [SMALL_STATE(3164)] = 153166, + [SMALL_STATE(3165)] = 153236, + [SMALL_STATE(3166)] = 153304, + [SMALL_STATE(3167)] = 153372, + [SMALL_STATE(3168)] = 153436, + [SMALL_STATE(3169)] = 153500, + [SMALL_STATE(3170)] = 153564, + [SMALL_STATE(3171)] = 153628, + [SMALL_STATE(3172)] = 153692, + [SMALL_STATE(3173)] = 153756, + [SMALL_STATE(3174)] = 153820, + [SMALL_STATE(3175)] = 153884, + [SMALL_STATE(3176)] = 153948, + [SMALL_STATE(3177)] = 154012, + [SMALL_STATE(3178)] = 154076, + [SMALL_STATE(3179)] = 154140, + [SMALL_STATE(3180)] = 154204, + [SMALL_STATE(3181)] = 154268, + [SMALL_STATE(3182)] = 154332, + [SMALL_STATE(3183)] = 154396, + [SMALL_STATE(3184)] = 154460, + [SMALL_STATE(3185)] = 154524, + [SMALL_STATE(3186)] = 154588, + [SMALL_STATE(3187)] = 154668, + [SMALL_STATE(3188)] = 154732, + [SMALL_STATE(3189)] = 154800, + [SMALL_STATE(3190)] = 154876, + [SMALL_STATE(3191)] = 154944, + [SMALL_STATE(3192)] = 155020, + [SMALL_STATE(3193)] = 155098, + [SMALL_STATE(3194)] = 155176, + [SMALL_STATE(3195)] = 155260, + [SMALL_STATE(3196)] = 155348, + [SMALL_STATE(3197)] = 155438, + [SMALL_STATE(3198)] = 155530, + [SMALL_STATE(3199)] = 155626, + [SMALL_STATE(3200)] = 155690, + [SMALL_STATE(3201)] = 155788, + [SMALL_STATE(3202)] = 155852, + [SMALL_STATE(3203)] = 155916, + [SMALL_STATE(3204)] = 155980, + [SMALL_STATE(3205)] = 156044, + [SMALL_STATE(3206)] = 156108, + [SMALL_STATE(3207)] = 156172, + [SMALL_STATE(3208)] = 156250, + [SMALL_STATE(3209)] = 156328, + [SMALL_STATE(3210)] = 156410, + [SMALL_STATE(3211)] = 156496, + [SMALL_STATE(3212)] = 156584, + [SMALL_STATE(3213)] = 156690, + [SMALL_STATE(3214)] = 156780, + [SMALL_STATE(3215)] = 156874, + [SMALL_STATE(3216)] = 156970, + [SMALL_STATE(3217)] = 157070, + [SMALL_STATE(3218)] = 157134, + [SMALL_STATE(3219)] = 157236, + [SMALL_STATE(3220)] = 157338, + [SMALL_STATE(3221)] = 157410, + [SMALL_STATE(3222)] = 157480, + [SMALL_STATE(3223)] = 157544, + [SMALL_STATE(3224)] = 157642, + [SMALL_STATE(3225)] = 157726, + [SMALL_STATE(3226)] = 157790, + [SMALL_STATE(3227)] = 157854, + [SMALL_STATE(3228)] = 157918, + [SMALL_STATE(3229)] = 157982, + [SMALL_STATE(3230)] = 158046, + [SMALL_STATE(3231)] = 158110, + [SMALL_STATE(3232)] = 158174, + [SMALL_STATE(3233)] = 158238, + [SMALL_STATE(3234)] = 158302, + [SMALL_STATE(3235)] = 158366, + [SMALL_STATE(3236)] = 158434, + [SMALL_STATE(3237)] = 158498, + [SMALL_STATE(3238)] = 158562, + [SMALL_STATE(3239)] = 158626, + [SMALL_STATE(3240)] = 158690, + [SMALL_STATE(3241)] = 158754, + [SMALL_STATE(3242)] = 158822, + [SMALL_STATE(3243)] = 158886, + [SMALL_STATE(3244)] = 158990, + [SMALL_STATE(3245)] = 159054, + [SMALL_STATE(3246)] = 159118, + [SMALL_STATE(3247)] = 159182, + [SMALL_STATE(3248)] = 159246, + [SMALL_STATE(3249)] = 159310, + [SMALL_STATE(3250)] = 159374, + [SMALL_STATE(3251)] = 159438, + [SMALL_STATE(3252)] = 159502, + [SMALL_STATE(3253)] = 159566, + [SMALL_STATE(3254)] = 159630, + [SMALL_STATE(3255)] = 159694, + [SMALL_STATE(3256)] = 159758, + [SMALL_STATE(3257)] = 159822, + [SMALL_STATE(3258)] = 159886, + [SMALL_STATE(3259)] = 159950, + [SMALL_STATE(3260)] = 160030, + [SMALL_STATE(3261)] = 160134, + [SMALL_STATE(3262)] = 160198, + [SMALL_STATE(3263)] = 160262, + [SMALL_STATE(3264)] = 160326, + [SMALL_STATE(3265)] = 160430, + [SMALL_STATE(3266)] = 160494, + [SMALL_STATE(3267)] = 160596, + [SMALL_STATE(3268)] = 160660, + [SMALL_STATE(3269)] = 160723, + [SMALL_STATE(3270)] = 160786, + [SMALL_STATE(3271)] = 160849, + [SMALL_STATE(3272)] = 160934, + [SMALL_STATE(3273)] = 160997, + [SMALL_STATE(3274)] = 161078, + [SMALL_STATE(3275)] = 161155, + [SMALL_STATE(3276)] = 161232, + [SMALL_STATE(3277)] = 161307, + [SMALL_STATE(3278)] = 161374, + [SMALL_STATE(3279)] = 161437, + [SMALL_STATE(3280)] = 161500, + [SMALL_STATE(3281)] = 161563, + [SMALL_STATE(3282)] = 161626, + [SMALL_STATE(3283)] = 161689, + [SMALL_STATE(3284)] = 161752, + [SMALL_STATE(3285)] = 161815, + [SMALL_STATE(3286)] = 161878, + [SMALL_STATE(3287)] = 161981, + [SMALL_STATE(3288)] = 162056, + [SMALL_STATE(3289)] = 162119, + [SMALL_STATE(3290)] = 162196, + [SMALL_STATE(3291)] = 162259, + [SMALL_STATE(3292)] = 162336, + [SMALL_STATE(3293)] = 162417, + [SMALL_STATE(3294)] = 162502, + [SMALL_STATE(3295)] = 162589, + [SMALL_STATE(3296)] = 162678, + [SMALL_STATE(3297)] = 162771, + [SMALL_STATE(3298)] = 162838, + [SMALL_STATE(3299)] = 162933, + [SMALL_STATE(3300)] = 162996, + [SMALL_STATE(3301)] = 163059, + [SMALL_STATE(3302)] = 163122, + [SMALL_STATE(3303)] = 163221, + [SMALL_STATE(3304)] = 163284, + [SMALL_STATE(3305)] = 163347, + [SMALL_STATE(3306)] = 163448, + [SMALL_STATE(3307)] = 163549, + [SMALL_STATE(3308)] = 163612, + [SMALL_STATE(3309)] = 163675, + [SMALL_STATE(3310)] = 163746, + [SMALL_STATE(3311)] = 163815, + [SMALL_STATE(3312)] = 163878, + [SMALL_STATE(3313)] = 163975, + [SMALL_STATE(3314)] = 164058, + [SMALL_STATE(3315)] = 164121, + [SMALL_STATE(3316)] = 164200, + [SMALL_STATE(3317)] = 164263, + [SMALL_STATE(3318)] = 164332, + [SMALL_STATE(3319)] = 164395, + [SMALL_STATE(3320)] = 164500, + [SMALL_STATE(3321)] = 164563, + [SMALL_STATE(3322)] = 164666, + [SMALL_STATE(3323)] = 164771, + [SMALL_STATE(3324)] = 164834, + [SMALL_STATE(3325)] = 164937, + [SMALL_STATE(3326)] = 165000, + [SMALL_STATE(3327)] = 165063, + [SMALL_STATE(3328)] = 165126, + [SMALL_STATE(3329)] = 165189, + [SMALL_STATE(3330)] = 165278, + [SMALL_STATE(3331)] = 165345, + [SMALL_STATE(3332)] = 165438, + [SMALL_STATE(3333)] = 165533, + [SMALL_STATE(3334)] = 165596, + [SMALL_STATE(3335)] = 165659, + [SMALL_STATE(3336)] = 165758, + [SMALL_STATE(3337)] = 165821, + [SMALL_STATE(3338)] = 165908, + [SMALL_STATE(3339)] = 165971, + [SMALL_STATE(3340)] = 166034, + [SMALL_STATE(3341)] = 166097, + [SMALL_STATE(3342)] = 166160, + [SMALL_STATE(3343)] = 166263, + [SMALL_STATE(3344)] = 166326, + [SMALL_STATE(3345)] = 166427, + [SMALL_STATE(3346)] = 166492, + [SMALL_STATE(3347)] = 166595, + [SMALL_STATE(3348)] = 166660, + [SMALL_STATE(3349)] = 166765, + [SMALL_STATE(3350)] = 166866, + [SMALL_STATE(3351)] = 166937, + [SMALL_STATE(3352)] = 167040, + [SMALL_STATE(3353)] = 167145, + [SMALL_STATE(3354)] = 167208, + [SMALL_STATE(3355)] = 167271, + [SMALL_STATE(3356)] = 167334, + [SMALL_STATE(3357)] = 167397, + [SMALL_STATE(3358)] = 167476, + [SMALL_STATE(3359)] = 167539, + [SMALL_STATE(3360)] = 167622, + [SMALL_STATE(3361)] = 167685, + [SMALL_STATE(3362)] = 167782, + [SMALL_STATE(3363)] = 167845, + [SMALL_STATE(3364)] = 167908, + [SMALL_STATE(3365)] = 167971, + [SMALL_STATE(3366)] = 168034, + [SMALL_STATE(3367)] = 168097, + [SMALL_STATE(3368)] = 168160, + [SMALL_STATE(3369)] = 168262, + [SMALL_STATE(3370)] = 168364, + [SMALL_STATE(3371)] = 168466, + [SMALL_STATE(3372)] = 168568, + [SMALL_STATE(3373)] = 168670, + [SMALL_STATE(3374)] = 168772, + [SMALL_STATE(3375)] = 168874, + [SMALL_STATE(3376)] = 168976, + [SMALL_STATE(3377)] = 169078, + [SMALL_STATE(3378)] = 169180, + [SMALL_STATE(3379)] = 169282, + [SMALL_STATE(3380)] = 169384, + [SMALL_STATE(3381)] = 169486, + [SMALL_STATE(3382)] = 169588, + [SMALL_STATE(3383)] = 169690, + [SMALL_STATE(3384)] = 169792, + [SMALL_STATE(3385)] = 169894, + [SMALL_STATE(3386)] = 169996, + [SMALL_STATE(3387)] = 170098, + [SMALL_STATE(3388)] = 170200, + [SMALL_STATE(3389)] = 170302, + [SMALL_STATE(3390)] = 170404, + [SMALL_STATE(3391)] = 170468, + [SMALL_STATE(3392)] = 170570, + [SMALL_STATE(3393)] = 170672, + [SMALL_STATE(3394)] = 170736, + [SMALL_STATE(3395)] = 170835, + [SMALL_STATE(3396)] = 170886, + [SMALL_STATE(3397)] = 170937, + [SMALL_STATE(3398)] = 170988, + [SMALL_STATE(3399)] = 171039, + [SMALL_STATE(3400)] = 171090, + [SMALL_STATE(3401)] = 171141, + [SMALL_STATE(3402)] = 171192, + [SMALL_STATE(3403)] = 171243, + [SMALL_STATE(3404)] = 171294, + [SMALL_STATE(3405)] = 171345, + [SMALL_STATE(3406)] = 171396, + [SMALL_STATE(3407)] = 171447, + [SMALL_STATE(3408)] = 171498, + [SMALL_STATE(3409)] = 171549, + [SMALL_STATE(3410)] = 171600, + [SMALL_STATE(3411)] = 171651, + [SMALL_STATE(3412)] = 171702, + [SMALL_STATE(3413)] = 171753, + [SMALL_STATE(3414)] = 171804, + [SMALL_STATE(3415)] = 171855, + [SMALL_STATE(3416)] = 171906, + [SMALL_STATE(3417)] = 171957, + [SMALL_STATE(3418)] = 172008, + [SMALL_STATE(3419)] = 172059, + [SMALL_STATE(3420)] = 172110, + [SMALL_STATE(3421)] = 172161, + [SMALL_STATE(3422)] = 172212, + [SMALL_STATE(3423)] = 172263, + [SMALL_STATE(3424)] = 172314, + [SMALL_STATE(3425)] = 172365, + [SMALL_STATE(3426)] = 172416, + [SMALL_STATE(3427)] = 172467, + [SMALL_STATE(3428)] = 172518, + [SMALL_STATE(3429)] = 172569, + [SMALL_STATE(3430)] = 172620, + [SMALL_STATE(3431)] = 172671, + [SMALL_STATE(3432)] = 172716, + [SMALL_STATE(3433)] = 172761, + [SMALL_STATE(3434)] = 172806, + [SMALL_STATE(3435)] = 172851, + [SMALL_STATE(3436)] = 172896, + [SMALL_STATE(3437)] = 172941, + [SMALL_STATE(3438)] = 172986, + [SMALL_STATE(3439)] = 173031, + [SMALL_STATE(3440)] = 173076, + [SMALL_STATE(3441)] = 173121, + [SMALL_STATE(3442)] = 173166, + [SMALL_STATE(3443)] = 173211, + [SMALL_STATE(3444)] = 173256, + [SMALL_STATE(3445)] = 173301, + [SMALL_STATE(3446)] = 173346, + [SMALL_STATE(3447)] = 173391, + [SMALL_STATE(3448)] = 173436, + [SMALL_STATE(3449)] = 173481, + [SMALL_STATE(3450)] = 173526, + [SMALL_STATE(3451)] = 173571, + [SMALL_STATE(3452)] = 173616, + [SMALL_STATE(3453)] = 173661, + [SMALL_STATE(3454)] = 173706, + [SMALL_STATE(3455)] = 173751, + [SMALL_STATE(3456)] = 173796, + [SMALL_STATE(3457)] = 173841, + [SMALL_STATE(3458)] = 173886, + [SMALL_STATE(3459)] = 173931, + [SMALL_STATE(3460)] = 173976, + [SMALL_STATE(3461)] = 174021, + [SMALL_STATE(3462)] = 174066, + [SMALL_STATE(3463)] = 174111, + [SMALL_STATE(3464)] = 174156, + [SMALL_STATE(3465)] = 174201, + [SMALL_STATE(3466)] = 174246, + [SMALL_STATE(3467)] = 174291, + [SMALL_STATE(3468)] = 174336, + [SMALL_STATE(3469)] = 174381, + [SMALL_STATE(3470)] = 174426, + [SMALL_STATE(3471)] = 174471, + [SMALL_STATE(3472)] = 174516, + [SMALL_STATE(3473)] = 174561, + [SMALL_STATE(3474)] = 174606, + [SMALL_STATE(3475)] = 174651, + [SMALL_STATE(3476)] = 174696, + [SMALL_STATE(3477)] = 174741, + [SMALL_STATE(3478)] = 174786, + [SMALL_STATE(3479)] = 174831, + [SMALL_STATE(3480)] = 174876, + [SMALL_STATE(3481)] = 174921, + [SMALL_STATE(3482)] = 174966, + [SMALL_STATE(3483)] = 175011, + [SMALL_STATE(3484)] = 175056, + [SMALL_STATE(3485)] = 175101, + [SMALL_STATE(3486)] = 175146, + [SMALL_STATE(3487)] = 175191, + [SMALL_STATE(3488)] = 175236, + [SMALL_STATE(3489)] = 175281, + [SMALL_STATE(3490)] = 175326, + [SMALL_STATE(3491)] = 175371, + [SMALL_STATE(3492)] = 175416, + [SMALL_STATE(3493)] = 175461, + [SMALL_STATE(3494)] = 175506, + [SMALL_STATE(3495)] = 175551, + [SMALL_STATE(3496)] = 175596, + [SMALL_STATE(3497)] = 175641, + [SMALL_STATE(3498)] = 175686, + [SMALL_STATE(3499)] = 175731, + [SMALL_STATE(3500)] = 175776, + [SMALL_STATE(3501)] = 175821, + [SMALL_STATE(3502)] = 175866, + [SMALL_STATE(3503)] = 175911, + [SMALL_STATE(3504)] = 175945, + [SMALL_STATE(3505)] = 175979, + [SMALL_STATE(3506)] = 176010, + [SMALL_STATE(3507)] = 176041, + [SMALL_STATE(3508)] = 176072, + [SMALL_STATE(3509)] = 176103, + [SMALL_STATE(3510)] = 176134, + [SMALL_STATE(3511)] = 176165, + [SMALL_STATE(3512)] = 176196, + [SMALL_STATE(3513)] = 176227, + [SMALL_STATE(3514)] = 176258, + [SMALL_STATE(3515)] = 176289, + [SMALL_STATE(3516)] = 176320, + [SMALL_STATE(3517)] = 176351, + [SMALL_STATE(3518)] = 176382, + [SMALL_STATE(3519)] = 176413, + [SMALL_STATE(3520)] = 176444, + [SMALL_STATE(3521)] = 176475, + [SMALL_STATE(3522)] = 176506, + [SMALL_STATE(3523)] = 176537, + [SMALL_STATE(3524)] = 176568, + [SMALL_STATE(3525)] = 176599, + [SMALL_STATE(3526)] = 176630, + [SMALL_STATE(3527)] = 176661, + [SMALL_STATE(3528)] = 176692, + [SMALL_STATE(3529)] = 176723, + [SMALL_STATE(3530)] = 176754, + [SMALL_STATE(3531)] = 176785, + [SMALL_STATE(3532)] = 176816, + [SMALL_STATE(3533)] = 176847, + [SMALL_STATE(3534)] = 176878, + [SMALL_STATE(3535)] = 176909, + [SMALL_STATE(3536)] = 176940, + [SMALL_STATE(3537)] = 176971, + [SMALL_STATE(3538)] = 177002, + [SMALL_STATE(3539)] = 177033, + [SMALL_STATE(3540)] = 177064, + [SMALL_STATE(3541)] = 177095, + [SMALL_STATE(3542)] = 177126, + [SMALL_STATE(3543)] = 177157, + [SMALL_STATE(3544)] = 177188, + [SMALL_STATE(3545)] = 177219, + [SMALL_STATE(3546)] = 177250, + [SMALL_STATE(3547)] = 177281, + [SMALL_STATE(3548)] = 177312, + [SMALL_STATE(3549)] = 177343, + [SMALL_STATE(3550)] = 177374, + [SMALL_STATE(3551)] = 177405, + [SMALL_STATE(3552)] = 177436, + [SMALL_STATE(3553)] = 177467, + [SMALL_STATE(3554)] = 177498, + [SMALL_STATE(3555)] = 177529, + [SMALL_STATE(3556)] = 177560, + [SMALL_STATE(3557)] = 177591, + [SMALL_STATE(3558)] = 177622, + [SMALL_STATE(3559)] = 177653, + [SMALL_STATE(3560)] = 177684, + [SMALL_STATE(3561)] = 177715, + [SMALL_STATE(3562)] = 177746, + [SMALL_STATE(3563)] = 177777, + [SMALL_STATE(3564)] = 177808, + [SMALL_STATE(3565)] = 177839, + [SMALL_STATE(3566)] = 177870, + [SMALL_STATE(3567)] = 177900, + [SMALL_STATE(3568)] = 177930, + [SMALL_STATE(3569)] = 177960, + [SMALL_STATE(3570)] = 177990, + [SMALL_STATE(3571)] = 178020, + [SMALL_STATE(3572)] = 178050, + [SMALL_STATE(3573)] = 178080, + [SMALL_STATE(3574)] = 178110, + [SMALL_STATE(3575)] = 178140, + [SMALL_STATE(3576)] = 178170, + [SMALL_STATE(3577)] = 178200, + [SMALL_STATE(3578)] = 178232, + [SMALL_STATE(3579)] = 178262, + [SMALL_STATE(3580)] = 178292, + [SMALL_STATE(3581)] = 178322, + [SMALL_STATE(3582)] = 178352, + [SMALL_STATE(3583)] = 178382, + [SMALL_STATE(3584)] = 178412, + [SMALL_STATE(3585)] = 178442, + [SMALL_STATE(3586)] = 178472, + [SMALL_STATE(3587)] = 178502, + [SMALL_STATE(3588)] = 178532, + [SMALL_STATE(3589)] = 178562, + [SMALL_STATE(3590)] = 178594, + [SMALL_STATE(3591)] = 178624, + [SMALL_STATE(3592)] = 178654, + [SMALL_STATE(3593)] = 178684, + [SMALL_STATE(3594)] = 178714, + [SMALL_STATE(3595)] = 178744, + [SMALL_STATE(3596)] = 178774, + [SMALL_STATE(3597)] = 178804, + [SMALL_STATE(3598)] = 178833, + [SMALL_STATE(3599)] = 178856, + [SMALL_STATE(3600)] = 178885, + [SMALL_STATE(3601)] = 178914, + [SMALL_STATE(3602)] = 178943, + [SMALL_STATE(3603)] = 178972, + [SMALL_STATE(3604)] = 179001, + [SMALL_STATE(3605)] = 179024, + [SMALL_STATE(3606)] = 179047, + [SMALL_STATE(3607)] = 179070, + [SMALL_STATE(3608)] = 179099, + [SMALL_STATE(3609)] = 179128, + [SMALL_STATE(3610)] = 179157, + [SMALL_STATE(3611)] = 179180, + [SMALL_STATE(3612)] = 179203, + [SMALL_STATE(3613)] = 179226, + [SMALL_STATE(3614)] = 179249, + [SMALL_STATE(3615)] = 179278, + [SMALL_STATE(3616)] = 179301, + [SMALL_STATE(3617)] = 179324, + [SMALL_STATE(3618)] = 179347, + [SMALL_STATE(3619)] = 179376, + [SMALL_STATE(3620)] = 179405, + [SMALL_STATE(3621)] = 179428, + [SMALL_STATE(3622)] = 179451, + [SMALL_STATE(3623)] = 179480, + [SMALL_STATE(3624)] = 179503, + [SMALL_STATE(3625)] = 179532, + [SMALL_STATE(3626)] = 179555, + [SMALL_STATE(3627)] = 179578, + [SMALL_STATE(3628)] = 179607, + [SMALL_STATE(3629)] = 179636, + [SMALL_STATE(3630)] = 179665, + [SMALL_STATE(3631)] = 179694, + [SMALL_STATE(3632)] = 179723, + [SMALL_STATE(3633)] = 179752, + [SMALL_STATE(3634)] = 179775, + [SMALL_STATE(3635)] = 179798, + [SMALL_STATE(3636)] = 179821, + [SMALL_STATE(3637)] = 179850, + [SMALL_STATE(3638)] = 179879, + [SMALL_STATE(3639)] = 179902, + [SMALL_STATE(3640)] = 179931, + [SMALL_STATE(3641)] = 179951, + [SMALL_STATE(3642)] = 179971, + [SMALL_STATE(3643)] = 179989, + [SMALL_STATE(3644)] = 180009, + [SMALL_STATE(3645)] = 180034, + [SMALL_STATE(3646)] = 180059, + [SMALL_STATE(3647)] = 180084, + [SMALL_STATE(3648)] = 180109, + [SMALL_STATE(3649)] = 180134, + [SMALL_STATE(3650)] = 180159, + [SMALL_STATE(3651)] = 180184, + [SMALL_STATE(3652)] = 180209, + [SMALL_STATE(3653)] = 180234, + [SMALL_STATE(3654)] = 180259, + [SMALL_STATE(3655)] = 180284, + [SMALL_STATE(3656)] = 180309, + [SMALL_STATE(3657)] = 180334, + [SMALL_STATE(3658)] = 180359, + [SMALL_STATE(3659)] = 180384, + [SMALL_STATE(3660)] = 180409, + [SMALL_STATE(3661)] = 180434, + [SMALL_STATE(3662)] = 180459, + [SMALL_STATE(3663)] = 180484, + [SMALL_STATE(3664)] = 180509, + [SMALL_STATE(3665)] = 180534, + [SMALL_STATE(3666)] = 180559, + [SMALL_STATE(3667)] = 180584, + [SMALL_STATE(3668)] = 180609, + [SMALL_STATE(3669)] = 180634, + [SMALL_STATE(3670)] = 180659, + [SMALL_STATE(3671)] = 180684, + [SMALL_STATE(3672)] = 180709, + [SMALL_STATE(3673)] = 180734, + [SMALL_STATE(3674)] = 180759, + [SMALL_STATE(3675)] = 180784, + [SMALL_STATE(3676)] = 180809, + [SMALL_STATE(3677)] = 180834, + [SMALL_STATE(3678)] = 180859, + [SMALL_STATE(3679)] = 180884, + [SMALL_STATE(3680)] = 180909, + [SMALL_STATE(3681)] = 180934, + [SMALL_STATE(3682)] = 180959, + [SMALL_STATE(3683)] = 180984, + [SMALL_STATE(3684)] = 181009, + [SMALL_STATE(3685)] = 181034, + [SMALL_STATE(3686)] = 181059, + [SMALL_STATE(3687)] = 181084, + [SMALL_STATE(3688)] = 181109, + [SMALL_STATE(3689)] = 181134, + [SMALL_STATE(3690)] = 181159, + [SMALL_STATE(3691)] = 181184, + [SMALL_STATE(3692)] = 181209, + [SMALL_STATE(3693)] = 181234, + [SMALL_STATE(3694)] = 181259, + [SMALL_STATE(3695)] = 181284, + [SMALL_STATE(3696)] = 181309, + [SMALL_STATE(3697)] = 181334, + [SMALL_STATE(3698)] = 181359, + [SMALL_STATE(3699)] = 181384, + [SMALL_STATE(3700)] = 181409, + [SMALL_STATE(3701)] = 181434, + [SMALL_STATE(3702)] = 181459, + [SMALL_STATE(3703)] = 181484, + [SMALL_STATE(3704)] = 181509, + [SMALL_STATE(3705)] = 181534, + [SMALL_STATE(3706)] = 181559, + [SMALL_STATE(3707)] = 181584, + [SMALL_STATE(3708)] = 181609, + [SMALL_STATE(3709)] = 181634, + [SMALL_STATE(3710)] = 181659, + [SMALL_STATE(3711)] = 181684, + [SMALL_STATE(3712)] = 181709, + [SMALL_STATE(3713)] = 181734, + [SMALL_STATE(3714)] = 181759, + [SMALL_STATE(3715)] = 181784, + [SMALL_STATE(3716)] = 181809, + [SMALL_STATE(3717)] = 181834, + [SMALL_STATE(3718)] = 181859, + [SMALL_STATE(3719)] = 181884, + [SMALL_STATE(3720)] = 181909, + [SMALL_STATE(3721)] = 181934, + [SMALL_STATE(3722)] = 181959, + [SMALL_STATE(3723)] = 181984, + [SMALL_STATE(3724)] = 182009, + [SMALL_STATE(3725)] = 182034, + [SMALL_STATE(3726)] = 182059, + [SMALL_STATE(3727)] = 182084, + [SMALL_STATE(3728)] = 182109, + [SMALL_STATE(3729)] = 182134, + [SMALL_STATE(3730)] = 182159, + [SMALL_STATE(3731)] = 182184, + [SMALL_STATE(3732)] = 182209, + [SMALL_STATE(3733)] = 182234, + [SMALL_STATE(3734)] = 182259, + [SMALL_STATE(3735)] = 182284, + [SMALL_STATE(3736)] = 182309, + [SMALL_STATE(3737)] = 182334, + [SMALL_STATE(3738)] = 182359, + [SMALL_STATE(3739)] = 182384, + [SMALL_STATE(3740)] = 182409, + [SMALL_STATE(3741)] = 182434, + [SMALL_STATE(3742)] = 182459, + [SMALL_STATE(3743)] = 182484, + [SMALL_STATE(3744)] = 182509, + [SMALL_STATE(3745)] = 182534, + [SMALL_STATE(3746)] = 182559, + [SMALL_STATE(3747)] = 182584, + [SMALL_STATE(3748)] = 182609, + [SMALL_STATE(3749)] = 182634, + [SMALL_STATE(3750)] = 182659, + [SMALL_STATE(3751)] = 182684, + [SMALL_STATE(3752)] = 182709, + [SMALL_STATE(3753)] = 182734, + [SMALL_STATE(3754)] = 182759, + [SMALL_STATE(3755)] = 182784, + [SMALL_STATE(3756)] = 182809, + [SMALL_STATE(3757)] = 182834, + [SMALL_STATE(3758)] = 182859, + [SMALL_STATE(3759)] = 182884, + [SMALL_STATE(3760)] = 182909, + [SMALL_STATE(3761)] = 182934, + [SMALL_STATE(3762)] = 182959, + [SMALL_STATE(3763)] = 182984, + [SMALL_STATE(3764)] = 183009, + [SMALL_STATE(3765)] = 183034, + [SMALL_STATE(3766)] = 183059, + [SMALL_STATE(3767)] = 183084, + [SMALL_STATE(3768)] = 183109, + [SMALL_STATE(3769)] = 183134, + [SMALL_STATE(3770)] = 183159, + [SMALL_STATE(3771)] = 183184, + [SMALL_STATE(3772)] = 183209, + [SMALL_STATE(3773)] = 183234, + [SMALL_STATE(3774)] = 183259, + [SMALL_STATE(3775)] = 183284, + [SMALL_STATE(3776)] = 183309, + [SMALL_STATE(3777)] = 183334, + [SMALL_STATE(3778)] = 183359, + [SMALL_STATE(3779)] = 183384, + [SMALL_STATE(3780)] = 183409, + [SMALL_STATE(3781)] = 183434, + [SMALL_STATE(3782)] = 183459, + [SMALL_STATE(3783)] = 183484, + [SMALL_STATE(3784)] = 183509, + [SMALL_STATE(3785)] = 183534, + [SMALL_STATE(3786)] = 183559, + [SMALL_STATE(3787)] = 183584, + [SMALL_STATE(3788)] = 183609, + [SMALL_STATE(3789)] = 183634, + [SMALL_STATE(3790)] = 183659, + [SMALL_STATE(3791)] = 183684, + [SMALL_STATE(3792)] = 183709, + [SMALL_STATE(3793)] = 183734, + [SMALL_STATE(3794)] = 183759, + [SMALL_STATE(3795)] = 183784, + [SMALL_STATE(3796)] = 183809, + [SMALL_STATE(3797)] = 183834, + [SMALL_STATE(3798)] = 183859, + [SMALL_STATE(3799)] = 183884, + [SMALL_STATE(3800)] = 183909, + [SMALL_STATE(3801)] = 183934, + [SMALL_STATE(3802)] = 183959, + [SMALL_STATE(3803)] = 183984, + [SMALL_STATE(3804)] = 184009, + [SMALL_STATE(3805)] = 184034, + [SMALL_STATE(3806)] = 184059, + [SMALL_STATE(3807)] = 184084, + [SMALL_STATE(3808)] = 184109, + [SMALL_STATE(3809)] = 184134, + [SMALL_STATE(3810)] = 184159, + [SMALL_STATE(3811)] = 184184, + [SMALL_STATE(3812)] = 184209, + [SMALL_STATE(3813)] = 184234, + [SMALL_STATE(3814)] = 184259, + [SMALL_STATE(3815)] = 184284, + [SMALL_STATE(3816)] = 184309, + [SMALL_STATE(3817)] = 184334, + [SMALL_STATE(3818)] = 184359, + [SMALL_STATE(3819)] = 184384, + [SMALL_STATE(3820)] = 184409, + [SMALL_STATE(3821)] = 184434, + [SMALL_STATE(3822)] = 184459, + [SMALL_STATE(3823)] = 184484, + [SMALL_STATE(3824)] = 184509, + [SMALL_STATE(3825)] = 184534, + [SMALL_STATE(3826)] = 184559, + [SMALL_STATE(3827)] = 184584, + [SMALL_STATE(3828)] = 184609, + [SMALL_STATE(3829)] = 184634, + [SMALL_STATE(3830)] = 184659, + [SMALL_STATE(3831)] = 184684, + [SMALL_STATE(3832)] = 184709, + [SMALL_STATE(3833)] = 184734, + [SMALL_STATE(3834)] = 184759, + [SMALL_STATE(3835)] = 184784, + [SMALL_STATE(3836)] = 184809, + [SMALL_STATE(3837)] = 184834, + [SMALL_STATE(3838)] = 184859, + [SMALL_STATE(3839)] = 184884, + [SMALL_STATE(3840)] = 184909, + [SMALL_STATE(3841)] = 184934, + [SMALL_STATE(3842)] = 184959, + [SMALL_STATE(3843)] = 184984, + [SMALL_STATE(3844)] = 185009, + [SMALL_STATE(3845)] = 185034, + [SMALL_STATE(3846)] = 185059, + [SMALL_STATE(3847)] = 185084, + [SMALL_STATE(3848)] = 185109, + [SMALL_STATE(3849)] = 185134, + [SMALL_STATE(3850)] = 185159, + [SMALL_STATE(3851)] = 185184, + [SMALL_STATE(3852)] = 185209, + [SMALL_STATE(3853)] = 185234, + [SMALL_STATE(3854)] = 185259, + [SMALL_STATE(3855)] = 185284, + [SMALL_STATE(3856)] = 185309, + [SMALL_STATE(3857)] = 185334, + [SMALL_STATE(3858)] = 185359, + [SMALL_STATE(3859)] = 185384, + [SMALL_STATE(3860)] = 185409, + [SMALL_STATE(3861)] = 185434, + [SMALL_STATE(3862)] = 185459, + [SMALL_STATE(3863)] = 185484, + [SMALL_STATE(3864)] = 185509, + [SMALL_STATE(3865)] = 185534, + [SMALL_STATE(3866)] = 185559, + [SMALL_STATE(3867)] = 185584, + [SMALL_STATE(3868)] = 185609, + [SMALL_STATE(3869)] = 185634, + [SMALL_STATE(3870)] = 185659, + [SMALL_STATE(3871)] = 185684, + [SMALL_STATE(3872)] = 185709, + [SMALL_STATE(3873)] = 185734, + [SMALL_STATE(3874)] = 185759, + [SMALL_STATE(3875)] = 185784, + [SMALL_STATE(3876)] = 185809, + [SMALL_STATE(3877)] = 185834, + [SMALL_STATE(3878)] = 185859, + [SMALL_STATE(3879)] = 185884, + [SMALL_STATE(3880)] = 185909, + [SMALL_STATE(3881)] = 185934, + [SMALL_STATE(3882)] = 185959, + [SMALL_STATE(3883)] = 185984, + [SMALL_STATE(3884)] = 186009, + [SMALL_STATE(3885)] = 186034, + [SMALL_STATE(3886)] = 186059, + [SMALL_STATE(3887)] = 186084, + [SMALL_STATE(3888)] = 186109, + [SMALL_STATE(3889)] = 186134, + [SMALL_STATE(3890)] = 186159, + [SMALL_STATE(3891)] = 186184, + [SMALL_STATE(3892)] = 186209, + [SMALL_STATE(3893)] = 186234, + [SMALL_STATE(3894)] = 186259, + [SMALL_STATE(3895)] = 186284, + [SMALL_STATE(3896)] = 186309, + [SMALL_STATE(3897)] = 186334, + [SMALL_STATE(3898)] = 186359, + [SMALL_STATE(3899)] = 186384, + [SMALL_STATE(3900)] = 186409, + [SMALL_STATE(3901)] = 186434, + [SMALL_STATE(3902)] = 186459, + [SMALL_STATE(3903)] = 186484, + [SMALL_STATE(3904)] = 186509, + [SMALL_STATE(3905)] = 186534, + [SMALL_STATE(3906)] = 186559, + [SMALL_STATE(3907)] = 186584, + [SMALL_STATE(3908)] = 186609, + [SMALL_STATE(3909)] = 186634, + [SMALL_STATE(3910)] = 186659, + [SMALL_STATE(3911)] = 186684, + [SMALL_STATE(3912)] = 186709, + [SMALL_STATE(3913)] = 186734, + [SMALL_STATE(3914)] = 186759, + [SMALL_STATE(3915)] = 186784, + [SMALL_STATE(3916)] = 186809, + [SMALL_STATE(3917)] = 186834, + [SMALL_STATE(3918)] = 186859, + [SMALL_STATE(3919)] = 186884, + [SMALL_STATE(3920)] = 186909, + [SMALL_STATE(3921)] = 186934, + [SMALL_STATE(3922)] = 186959, + [SMALL_STATE(3923)] = 186984, + [SMALL_STATE(3924)] = 187009, + [SMALL_STATE(3925)] = 187034, + [SMALL_STATE(3926)] = 187059, + [SMALL_STATE(3927)] = 187084, + [SMALL_STATE(3928)] = 187109, + [SMALL_STATE(3929)] = 187134, + [SMALL_STATE(3930)] = 187159, + [SMALL_STATE(3931)] = 187184, + [SMALL_STATE(3932)] = 187209, + [SMALL_STATE(3933)] = 187234, + [SMALL_STATE(3934)] = 187259, + [SMALL_STATE(3935)] = 187284, + [SMALL_STATE(3936)] = 187309, + [SMALL_STATE(3937)] = 187334, + [SMALL_STATE(3938)] = 187359, + [SMALL_STATE(3939)] = 187384, + [SMALL_STATE(3940)] = 187409, + [SMALL_STATE(3941)] = 187434, + [SMALL_STATE(3942)] = 187459, + [SMALL_STATE(3943)] = 187484, + [SMALL_STATE(3944)] = 187509, + [SMALL_STATE(3945)] = 187534, + [SMALL_STATE(3946)] = 187559, + [SMALL_STATE(3947)] = 187584, + [SMALL_STATE(3948)] = 187609, + [SMALL_STATE(3949)] = 187634, + [SMALL_STATE(3950)] = 187659, + [SMALL_STATE(3951)] = 187684, + [SMALL_STATE(3952)] = 187709, + [SMALL_STATE(3953)] = 187734, + [SMALL_STATE(3954)] = 187759, + [SMALL_STATE(3955)] = 187784, + [SMALL_STATE(3956)] = 187809, + [SMALL_STATE(3957)] = 187834, + [SMALL_STATE(3958)] = 187859, + [SMALL_STATE(3959)] = 187884, + [SMALL_STATE(3960)] = 187909, + [SMALL_STATE(3961)] = 187934, + [SMALL_STATE(3962)] = 187959, + [SMALL_STATE(3963)] = 187984, + [SMALL_STATE(3964)] = 188009, + [SMALL_STATE(3965)] = 188034, + [SMALL_STATE(3966)] = 188059, + [SMALL_STATE(3967)] = 188084, + [SMALL_STATE(3968)] = 188109, + [SMALL_STATE(3969)] = 188134, + [SMALL_STATE(3970)] = 188159, + [SMALL_STATE(3971)] = 188184, + [SMALL_STATE(3972)] = 188209, + [SMALL_STATE(3973)] = 188234, + [SMALL_STATE(3974)] = 188259, + [SMALL_STATE(3975)] = 188284, + [SMALL_STATE(3976)] = 188309, + [SMALL_STATE(3977)] = 188334, + [SMALL_STATE(3978)] = 188359, + [SMALL_STATE(3979)] = 188384, + [SMALL_STATE(3980)] = 188409, + [SMALL_STATE(3981)] = 188434, + [SMALL_STATE(3982)] = 188459, + [SMALL_STATE(3983)] = 188484, + [SMALL_STATE(3984)] = 188509, + [SMALL_STATE(3985)] = 188534, + [SMALL_STATE(3986)] = 188559, + [SMALL_STATE(3987)] = 188584, + [SMALL_STATE(3988)] = 188609, + [SMALL_STATE(3989)] = 188634, + [SMALL_STATE(3990)] = 188659, + [SMALL_STATE(3991)] = 188684, + [SMALL_STATE(3992)] = 188709, + [SMALL_STATE(3993)] = 188734, + [SMALL_STATE(3994)] = 188759, + [SMALL_STATE(3995)] = 188784, + [SMALL_STATE(3996)] = 188809, + [SMALL_STATE(3997)] = 188834, + [SMALL_STATE(3998)] = 188859, + [SMALL_STATE(3999)] = 188884, + [SMALL_STATE(4000)] = 188909, + [SMALL_STATE(4001)] = 188934, + [SMALL_STATE(4002)] = 188959, + [SMALL_STATE(4003)] = 188984, + [SMALL_STATE(4004)] = 189009, + [SMALL_STATE(4005)] = 189034, + [SMALL_STATE(4006)] = 189059, + [SMALL_STATE(4007)] = 189084, + [SMALL_STATE(4008)] = 189109, + [SMALL_STATE(4009)] = 189134, + [SMALL_STATE(4010)] = 189159, + [SMALL_STATE(4011)] = 189184, + [SMALL_STATE(4012)] = 189209, + [SMALL_STATE(4013)] = 189234, + [SMALL_STATE(4014)] = 189259, + [SMALL_STATE(4015)] = 189284, + [SMALL_STATE(4016)] = 189309, + [SMALL_STATE(4017)] = 189334, + [SMALL_STATE(4018)] = 189359, + [SMALL_STATE(4019)] = 189384, + [SMALL_STATE(4020)] = 189409, + [SMALL_STATE(4021)] = 189434, + [SMALL_STATE(4022)] = 189459, + [SMALL_STATE(4023)] = 189484, + [SMALL_STATE(4024)] = 189509, + [SMALL_STATE(4025)] = 189534, + [SMALL_STATE(4026)] = 189559, + [SMALL_STATE(4027)] = 189584, + [SMALL_STATE(4028)] = 189609, + [SMALL_STATE(4029)] = 189634, + [SMALL_STATE(4030)] = 189659, + [SMALL_STATE(4031)] = 189684, + [SMALL_STATE(4032)] = 189709, + [SMALL_STATE(4033)] = 189734, + [SMALL_STATE(4034)] = 189759, + [SMALL_STATE(4035)] = 189784, + [SMALL_STATE(4036)] = 189809, + [SMALL_STATE(4037)] = 189834, + [SMALL_STATE(4038)] = 189859, + [SMALL_STATE(4039)] = 189884, + [SMALL_STATE(4040)] = 189909, + [SMALL_STATE(4041)] = 189934, + [SMALL_STATE(4042)] = 189959, + [SMALL_STATE(4043)] = 189984, + [SMALL_STATE(4044)] = 190009, + [SMALL_STATE(4045)] = 190034, + [SMALL_STATE(4046)] = 190059, + [SMALL_STATE(4047)] = 190084, + [SMALL_STATE(4048)] = 190109, + [SMALL_STATE(4049)] = 190134, + [SMALL_STATE(4050)] = 190159, + [SMALL_STATE(4051)] = 190184, + [SMALL_STATE(4052)] = 190209, + [SMALL_STATE(4053)] = 190234, + [SMALL_STATE(4054)] = 190259, + [SMALL_STATE(4055)] = 190284, + [SMALL_STATE(4056)] = 190309, + [SMALL_STATE(4057)] = 190334, + [SMALL_STATE(4058)] = 190359, + [SMALL_STATE(4059)] = 190384, + [SMALL_STATE(4060)] = 190409, + [SMALL_STATE(4061)] = 190434, + [SMALL_STATE(4062)] = 190459, + [SMALL_STATE(4063)] = 190484, + [SMALL_STATE(4064)] = 190509, + [SMALL_STATE(4065)] = 190534, + [SMALL_STATE(4066)] = 190559, + [SMALL_STATE(4067)] = 190584, + [SMALL_STATE(4068)] = 190609, + [SMALL_STATE(4069)] = 190634, + [SMALL_STATE(4070)] = 190659, + [SMALL_STATE(4071)] = 190684, + [SMALL_STATE(4072)] = 190709, + [SMALL_STATE(4073)] = 190734, + [SMALL_STATE(4074)] = 190759, + [SMALL_STATE(4075)] = 190784, + [SMALL_STATE(4076)] = 190809, + [SMALL_STATE(4077)] = 190834, + [SMALL_STATE(4078)] = 190859, + [SMALL_STATE(4079)] = 190884, + [SMALL_STATE(4080)] = 190909, + [SMALL_STATE(4081)] = 190934, + [SMALL_STATE(4082)] = 190959, + [SMALL_STATE(4083)] = 190984, + [SMALL_STATE(4084)] = 191009, + [SMALL_STATE(4085)] = 191034, + [SMALL_STATE(4086)] = 191059, + [SMALL_STATE(4087)] = 191084, + [SMALL_STATE(4088)] = 191109, + [SMALL_STATE(4089)] = 191134, + [SMALL_STATE(4090)] = 191159, + [SMALL_STATE(4091)] = 191184, + [SMALL_STATE(4092)] = 191209, + [SMALL_STATE(4093)] = 191234, + [SMALL_STATE(4094)] = 191259, + [SMALL_STATE(4095)] = 191284, + [SMALL_STATE(4096)] = 191309, + [SMALL_STATE(4097)] = 191334, + [SMALL_STATE(4098)] = 191359, + [SMALL_STATE(4099)] = 191384, + [SMALL_STATE(4100)] = 191409, + [SMALL_STATE(4101)] = 191434, + [SMALL_STATE(4102)] = 191459, + [SMALL_STATE(4103)] = 191484, + [SMALL_STATE(4104)] = 191509, + [SMALL_STATE(4105)] = 191534, + [SMALL_STATE(4106)] = 191559, + [SMALL_STATE(4107)] = 191584, + [SMALL_STATE(4108)] = 191609, + [SMALL_STATE(4109)] = 191634, + [SMALL_STATE(4110)] = 191659, + [SMALL_STATE(4111)] = 191684, + [SMALL_STATE(4112)] = 191709, + [SMALL_STATE(4113)] = 191734, + [SMALL_STATE(4114)] = 191759, + [SMALL_STATE(4115)] = 191784, + [SMALL_STATE(4116)] = 191809, + [SMALL_STATE(4117)] = 191834, + [SMALL_STATE(4118)] = 191859, + [SMALL_STATE(4119)] = 191884, + [SMALL_STATE(4120)] = 191909, + [SMALL_STATE(4121)] = 191934, + [SMALL_STATE(4122)] = 191959, + [SMALL_STATE(4123)] = 191984, + [SMALL_STATE(4124)] = 192009, + [SMALL_STATE(4125)] = 192034, + [SMALL_STATE(4126)] = 192059, + [SMALL_STATE(4127)] = 192084, + [SMALL_STATE(4128)] = 192109, + [SMALL_STATE(4129)] = 192134, + [SMALL_STATE(4130)] = 192159, + [SMALL_STATE(4131)] = 192184, + [SMALL_STATE(4132)] = 192209, + [SMALL_STATE(4133)] = 192234, + [SMALL_STATE(4134)] = 192259, + [SMALL_STATE(4135)] = 192284, + [SMALL_STATE(4136)] = 192309, + [SMALL_STATE(4137)] = 192334, + [SMALL_STATE(4138)] = 192359, + [SMALL_STATE(4139)] = 192385, + [SMALL_STATE(4140)] = 192405, + [SMALL_STATE(4141)] = 192431, + [SMALL_STATE(4142)] = 192457, + [SMALL_STATE(4143)] = 192483, + [SMALL_STATE(4144)] = 192509, + [SMALL_STATE(4145)] = 192535, + [SMALL_STATE(4146)] = 192561, + [SMALL_STATE(4147)] = 192587, + [SMALL_STATE(4148)] = 192613, + [SMALL_STATE(4149)] = 192639, + [SMALL_STATE(4150)] = 192665, + [SMALL_STATE(4151)] = 192691, + [SMALL_STATE(4152)] = 192717, + [SMALL_STATE(4153)] = 192743, + [SMALL_STATE(4154)] = 192769, + [SMALL_STATE(4155)] = 192795, + [SMALL_STATE(4156)] = 192821, + [SMALL_STATE(4157)] = 192847, + [SMALL_STATE(4158)] = 192873, + [SMALL_STATE(4159)] = 192899, + [SMALL_STATE(4160)] = 192925, + [SMALL_STATE(4161)] = 192951, + [SMALL_STATE(4162)] = 192977, + [SMALL_STATE(4163)] = 193003, + [SMALL_STATE(4164)] = 193029, + [SMALL_STATE(4165)] = 193055, + [SMALL_STATE(4166)] = 193075, + [SMALL_STATE(4167)] = 193101, + [SMALL_STATE(4168)] = 193127, + [SMALL_STATE(4169)] = 193153, + [SMALL_STATE(4170)] = 193179, + [SMALL_STATE(4171)] = 193205, + [SMALL_STATE(4172)] = 193231, + [SMALL_STATE(4173)] = 193257, + [SMALL_STATE(4174)] = 193283, + [SMALL_STATE(4175)] = 193309, + [SMALL_STATE(4176)] = 193335, + [SMALL_STATE(4177)] = 193361, + [SMALL_STATE(4178)] = 193387, + [SMALL_STATE(4179)] = 193413, + [SMALL_STATE(4180)] = 193433, + [SMALL_STATE(4181)] = 193459, + [SMALL_STATE(4182)] = 193485, + [SMALL_STATE(4183)] = 193511, + [SMALL_STATE(4184)] = 193537, + [SMALL_STATE(4185)] = 193563, + [SMALL_STATE(4186)] = 193583, + [SMALL_STATE(4187)] = 193609, + [SMALL_STATE(4188)] = 193635, + [SMALL_STATE(4189)] = 193661, + [SMALL_STATE(4190)] = 193687, + [SMALL_STATE(4191)] = 193713, + [SMALL_STATE(4192)] = 193739, + [SMALL_STATE(4193)] = 193765, + [SMALL_STATE(4194)] = 193791, + [SMALL_STATE(4195)] = 193817, + [SMALL_STATE(4196)] = 193843, + [SMALL_STATE(4197)] = 193869, + [SMALL_STATE(4198)] = 193895, + [SMALL_STATE(4199)] = 193921, + [SMALL_STATE(4200)] = 193947, + [SMALL_STATE(4201)] = 193973, + [SMALL_STATE(4202)] = 193999, + [SMALL_STATE(4203)] = 194025, + [SMALL_STATE(4204)] = 194051, + [SMALL_STATE(4205)] = 194077, + [SMALL_STATE(4206)] = 194103, + [SMALL_STATE(4207)] = 194129, + [SMALL_STATE(4208)] = 194155, + [SMALL_STATE(4209)] = 194181, + [SMALL_STATE(4210)] = 194207, + [SMALL_STATE(4211)] = 194233, + [SMALL_STATE(4212)] = 194259, + [SMALL_STATE(4213)] = 194285, + [SMALL_STATE(4214)] = 194311, + [SMALL_STATE(4215)] = 194337, + [SMALL_STATE(4216)] = 194363, + [SMALL_STATE(4217)] = 194389, + [SMALL_STATE(4218)] = 194409, + [SMALL_STATE(4219)] = 194435, + [SMALL_STATE(4220)] = 194461, + [SMALL_STATE(4221)] = 194487, + [SMALL_STATE(4222)] = 194513, + [SMALL_STATE(4223)] = 194539, + [SMALL_STATE(4224)] = 194559, + [SMALL_STATE(4225)] = 194585, + [SMALL_STATE(4226)] = 194611, + [SMALL_STATE(4227)] = 194637, + [SMALL_STATE(4228)] = 194663, + [SMALL_STATE(4229)] = 194689, + [SMALL_STATE(4230)] = 194715, + [SMALL_STATE(4231)] = 194741, + [SMALL_STATE(4232)] = 194767, + [SMALL_STATE(4233)] = 194793, + [SMALL_STATE(4234)] = 194819, + [SMALL_STATE(4235)] = 194845, + [SMALL_STATE(4236)] = 194871, + [SMALL_STATE(4237)] = 194897, + [SMALL_STATE(4238)] = 194923, + [SMALL_STATE(4239)] = 194949, + [SMALL_STATE(4240)] = 194975, + [SMALL_STATE(4241)] = 195001, + [SMALL_STATE(4242)] = 195027, + [SMALL_STATE(4243)] = 195053, + [SMALL_STATE(4244)] = 195079, + [SMALL_STATE(4245)] = 195105, + [SMALL_STATE(4246)] = 195131, + [SMALL_STATE(4247)] = 195157, + [SMALL_STATE(4248)] = 195183, + [SMALL_STATE(4249)] = 195209, + [SMALL_STATE(4250)] = 195235, + [SMALL_STATE(4251)] = 195261, + [SMALL_STATE(4252)] = 195287, + [SMALL_STATE(4253)] = 195313, + [SMALL_STATE(4254)] = 195339, + [SMALL_STATE(4255)] = 195365, + [SMALL_STATE(4256)] = 195391, + [SMALL_STATE(4257)] = 195417, + [SMALL_STATE(4258)] = 195443, + [SMALL_STATE(4259)] = 195469, + [SMALL_STATE(4260)] = 195495, + [SMALL_STATE(4261)] = 195521, + [SMALL_STATE(4262)] = 195547, + [SMALL_STATE(4263)] = 195573, + [SMALL_STATE(4264)] = 195599, + [SMALL_STATE(4265)] = 195625, + [SMALL_STATE(4266)] = 195651, + [SMALL_STATE(4267)] = 195677, + [SMALL_STATE(4268)] = 195703, + [SMALL_STATE(4269)] = 195729, + [SMALL_STATE(4270)] = 195755, + [SMALL_STATE(4271)] = 195781, + [SMALL_STATE(4272)] = 195807, + [SMALL_STATE(4273)] = 195827, + [SMALL_STATE(4274)] = 195853, + [SMALL_STATE(4275)] = 195879, + [SMALL_STATE(4276)] = 195905, + [SMALL_STATE(4277)] = 195931, + [SMALL_STATE(4278)] = 195952, + [SMALL_STATE(4279)] = 195973, + [SMALL_STATE(4280)] = 195994, + [SMALL_STATE(4281)] = 196015, + [SMALL_STATE(4282)] = 196036, + [SMALL_STATE(4283)] = 196057, + [SMALL_STATE(4284)] = 196078, + [SMALL_STATE(4285)] = 196099, + [SMALL_STATE(4286)] = 196120, + [SMALL_STATE(4287)] = 196141, + [SMALL_STATE(4288)] = 196162, + [SMALL_STATE(4289)] = 196183, + [SMALL_STATE(4290)] = 196204, + [SMALL_STATE(4291)] = 196223, + [SMALL_STATE(4292)] = 196244, + [SMALL_STATE(4293)] = 196265, + [SMALL_STATE(4294)] = 196286, + [SMALL_STATE(4295)] = 196307, + [SMALL_STATE(4296)] = 196328, + [SMALL_STATE(4297)] = 196349, + [SMALL_STATE(4298)] = 196370, + [SMALL_STATE(4299)] = 196391, + [SMALL_STATE(4300)] = 196412, + [SMALL_STATE(4301)] = 196433, + [SMALL_STATE(4302)] = 196454, + [SMALL_STATE(4303)] = 196475, + [SMALL_STATE(4304)] = 196496, + [SMALL_STATE(4305)] = 196517, + [SMALL_STATE(4306)] = 196538, + [SMALL_STATE(4307)] = 196559, + [SMALL_STATE(4308)] = 196580, + [SMALL_STATE(4309)] = 196601, + [SMALL_STATE(4310)] = 196622, + [SMALL_STATE(4311)] = 196643, + [SMALL_STATE(4312)] = 196664, + [SMALL_STATE(4313)] = 196685, + [SMALL_STATE(4314)] = 196706, + [SMALL_STATE(4315)] = 196727, + [SMALL_STATE(4316)] = 196748, + [SMALL_STATE(4317)] = 196769, + [SMALL_STATE(4318)] = 196790, + [SMALL_STATE(4319)] = 196811, + [SMALL_STATE(4320)] = 196832, + [SMALL_STATE(4321)] = 196853, + [SMALL_STATE(4322)] = 196874, + [SMALL_STATE(4323)] = 196895, + [SMALL_STATE(4324)] = 196916, + [SMALL_STATE(4325)] = 196937, + [SMALL_STATE(4326)] = 196958, + [SMALL_STATE(4327)] = 196975, + [SMALL_STATE(4328)] = 196996, + [SMALL_STATE(4329)] = 197017, + [SMALL_STATE(4330)] = 197038, + [SMALL_STATE(4331)] = 197059, + [SMALL_STATE(4332)] = 197080, + [SMALL_STATE(4333)] = 197097, + [SMALL_STATE(4334)] = 197118, + [SMALL_STATE(4335)] = 197139, + [SMALL_STATE(4336)] = 197160, + [SMALL_STATE(4337)] = 197181, + [SMALL_STATE(4338)] = 197202, + [SMALL_STATE(4339)] = 197223, + [SMALL_STATE(4340)] = 197244, + [SMALL_STATE(4341)] = 197265, + [SMALL_STATE(4342)] = 197286, + [SMALL_STATE(4343)] = 197307, + [SMALL_STATE(4344)] = 197328, + [SMALL_STATE(4345)] = 197349, + [SMALL_STATE(4346)] = 197370, + [SMALL_STATE(4347)] = 197391, + [SMALL_STATE(4348)] = 197412, + [SMALL_STATE(4349)] = 197433, + [SMALL_STATE(4350)] = 197454, + [SMALL_STATE(4351)] = 197475, + [SMALL_STATE(4352)] = 197496, + [SMALL_STATE(4353)] = 197517, + [SMALL_STATE(4354)] = 197538, + [SMALL_STATE(4355)] = 197559, + [SMALL_STATE(4356)] = 197580, + [SMALL_STATE(4357)] = 197597, + [SMALL_STATE(4358)] = 197616, + [SMALL_STATE(4359)] = 197637, + [SMALL_STATE(4360)] = 197658, + [SMALL_STATE(4361)] = 197679, + [SMALL_STATE(4362)] = 197700, + [SMALL_STATE(4363)] = 197721, + [SMALL_STATE(4364)] = 197742, + [SMALL_STATE(4365)] = 197763, + [SMALL_STATE(4366)] = 197784, + [SMALL_STATE(4367)] = 197805, + [SMALL_STATE(4368)] = 197826, + [SMALL_STATE(4369)] = 197847, + [SMALL_STATE(4370)] = 197868, + [SMALL_STATE(4371)] = 197889, + [SMALL_STATE(4372)] = 197910, + [SMALL_STATE(4373)] = 197927, + [SMALL_STATE(4374)] = 197948, + [SMALL_STATE(4375)] = 197969, + [SMALL_STATE(4376)] = 197990, + [SMALL_STATE(4377)] = 198007, + [SMALL_STATE(4378)] = 198028, + [SMALL_STATE(4379)] = 198047, + [SMALL_STATE(4380)] = 198064, + [SMALL_STATE(4381)] = 198085, + [SMALL_STATE(4382)] = 198106, + [SMALL_STATE(4383)] = 198127, + [SMALL_STATE(4384)] = 198146, + [SMALL_STATE(4385)] = 198167, + [SMALL_STATE(4386)] = 198188, + [SMALL_STATE(4387)] = 198209, + [SMALL_STATE(4388)] = 198228, + [SMALL_STATE(4389)] = 198249, + [SMALL_STATE(4390)] = 198270, + [SMALL_STATE(4391)] = 198291, + [SMALL_STATE(4392)] = 198312, + [SMALL_STATE(4393)] = 198333, + [SMALL_STATE(4394)] = 198354, + [SMALL_STATE(4395)] = 198375, + [SMALL_STATE(4396)] = 198396, + [SMALL_STATE(4397)] = 198417, + [SMALL_STATE(4398)] = 198438, + [SMALL_STATE(4399)] = 198459, + [SMALL_STATE(4400)] = 198480, + [SMALL_STATE(4401)] = 198501, + [SMALL_STATE(4402)] = 198522, + [SMALL_STATE(4403)] = 198543, + [SMALL_STATE(4404)] = 198564, + [SMALL_STATE(4405)] = 198585, + [SMALL_STATE(4406)] = 198606, + [SMALL_STATE(4407)] = 198627, + [SMALL_STATE(4408)] = 198648, + [SMALL_STATE(4409)] = 198669, + [SMALL_STATE(4410)] = 198690, + [SMALL_STATE(4411)] = 198711, + [SMALL_STATE(4412)] = 198732, + [SMALL_STATE(4413)] = 198753, + [SMALL_STATE(4414)] = 198774, + [SMALL_STATE(4415)] = 198795, + [SMALL_STATE(4416)] = 198816, + [SMALL_STATE(4417)] = 198837, + [SMALL_STATE(4418)] = 198856, + [SMALL_STATE(4419)] = 198877, + [SMALL_STATE(4420)] = 198894, + [SMALL_STATE(4421)] = 198915, + [SMALL_STATE(4422)] = 198936, + [SMALL_STATE(4423)] = 198953, + [SMALL_STATE(4424)] = 198974, + [SMALL_STATE(4425)] = 198995, + [SMALL_STATE(4426)] = 199016, + [SMALL_STATE(4427)] = 199037, + [SMALL_STATE(4428)] = 199058, + [SMALL_STATE(4429)] = 199079, + [SMALL_STATE(4430)] = 199100, + [SMALL_STATE(4431)] = 199121, + [SMALL_STATE(4432)] = 199142, + [SMALL_STATE(4433)] = 199163, + [SMALL_STATE(4434)] = 199184, + [SMALL_STATE(4435)] = 199205, + [SMALL_STATE(4436)] = 199226, + [SMALL_STATE(4437)] = 199247, + [SMALL_STATE(4438)] = 199268, + [SMALL_STATE(4439)] = 199289, + [SMALL_STATE(4440)] = 199310, + [SMALL_STATE(4441)] = 199331, + [SMALL_STATE(4442)] = 199352, + [SMALL_STATE(4443)] = 199373, + [SMALL_STATE(4444)] = 199394, + [SMALL_STATE(4445)] = 199415, + [SMALL_STATE(4446)] = 199436, + [SMALL_STATE(4447)] = 199457, + [SMALL_STATE(4448)] = 199478, + [SMALL_STATE(4449)] = 199499, + [SMALL_STATE(4450)] = 199520, + [SMALL_STATE(4451)] = 199541, + [SMALL_STATE(4452)] = 199562, + [SMALL_STATE(4453)] = 199583, + [SMALL_STATE(4454)] = 199604, + [SMALL_STATE(4455)] = 199625, + [SMALL_STATE(4456)] = 199646, + [SMALL_STATE(4457)] = 199667, + [SMALL_STATE(4458)] = 199688, + [SMALL_STATE(4459)] = 199709, + [SMALL_STATE(4460)] = 199730, + [SMALL_STATE(4461)] = 199751, + [SMALL_STATE(4462)] = 199772, + [SMALL_STATE(4463)] = 199793, + [SMALL_STATE(4464)] = 199814, + [SMALL_STATE(4465)] = 199835, + [SMALL_STATE(4466)] = 199856, + [SMALL_STATE(4467)] = 199877, + [SMALL_STATE(4468)] = 199898, + [SMALL_STATE(4469)] = 199919, + [SMALL_STATE(4470)] = 199940, + [SMALL_STATE(4471)] = 199961, + [SMALL_STATE(4472)] = 199982, + [SMALL_STATE(4473)] = 200003, + [SMALL_STATE(4474)] = 200024, + [SMALL_STATE(4475)] = 200045, + [SMALL_STATE(4476)] = 200066, + [SMALL_STATE(4477)] = 200087, + [SMALL_STATE(4478)] = 200108, + [SMALL_STATE(4479)] = 200129, + [SMALL_STATE(4480)] = 200150, + [SMALL_STATE(4481)] = 200171, + [SMALL_STATE(4482)] = 200192, + [SMALL_STATE(4483)] = 200213, + [SMALL_STATE(4484)] = 200234, + [SMALL_STATE(4485)] = 200255, + [SMALL_STATE(4486)] = 200276, + [SMALL_STATE(4487)] = 200297, + [SMALL_STATE(4488)] = 200318, + [SMALL_STATE(4489)] = 200339, + [SMALL_STATE(4490)] = 200360, + [SMALL_STATE(4491)] = 200381, + [SMALL_STATE(4492)] = 200402, + [SMALL_STATE(4493)] = 200423, + [SMALL_STATE(4494)] = 200444, + [SMALL_STATE(4495)] = 200465, + [SMALL_STATE(4496)] = 200486, + [SMALL_STATE(4497)] = 200507, + [SMALL_STATE(4498)] = 200528, + [SMALL_STATE(4499)] = 200549, + [SMALL_STATE(4500)] = 200570, + [SMALL_STATE(4501)] = 200591, + [SMALL_STATE(4502)] = 200612, + [SMALL_STATE(4503)] = 200633, + [SMALL_STATE(4504)] = 200654, + [SMALL_STATE(4505)] = 200675, + [SMALL_STATE(4506)] = 200696, + [SMALL_STATE(4507)] = 200717, + [SMALL_STATE(4508)] = 200738, + [SMALL_STATE(4509)] = 200759, + [SMALL_STATE(4510)] = 200780, + [SMALL_STATE(4511)] = 200801, + [SMALL_STATE(4512)] = 200822, + [SMALL_STATE(4513)] = 200843, + [SMALL_STATE(4514)] = 200864, + [SMALL_STATE(4515)] = 200885, + [SMALL_STATE(4516)] = 200906, + [SMALL_STATE(4517)] = 200927, + [SMALL_STATE(4518)] = 200946, + [SMALL_STATE(4519)] = 200967, + [SMALL_STATE(4520)] = 200988, + [SMALL_STATE(4521)] = 201009, + [SMALL_STATE(4522)] = 201030, + [SMALL_STATE(4523)] = 201051, + [SMALL_STATE(4524)] = 201072, + [SMALL_STATE(4525)] = 201093, + [SMALL_STATE(4526)] = 201114, + [SMALL_STATE(4527)] = 201135, + [SMALL_STATE(4528)] = 201156, + [SMALL_STATE(4529)] = 201175, + [SMALL_STATE(4530)] = 201196, + [SMALL_STATE(4531)] = 201217, + [SMALL_STATE(4532)] = 201238, + [SMALL_STATE(4533)] = 201259, + [SMALL_STATE(4534)] = 201280, + [SMALL_STATE(4535)] = 201301, + [SMALL_STATE(4536)] = 201322, + [SMALL_STATE(4537)] = 201343, + [SMALL_STATE(4538)] = 201364, + [SMALL_STATE(4539)] = 201385, + [SMALL_STATE(4540)] = 201406, + [SMALL_STATE(4541)] = 201427, + [SMALL_STATE(4542)] = 201448, + [SMALL_STATE(4543)] = 201469, + [SMALL_STATE(4544)] = 201490, + [SMALL_STATE(4545)] = 201511, + [SMALL_STATE(4546)] = 201532, + [SMALL_STATE(4547)] = 201553, + [SMALL_STATE(4548)] = 201574, + [SMALL_STATE(4549)] = 201595, + [SMALL_STATE(4550)] = 201616, + [SMALL_STATE(4551)] = 201637, + [SMALL_STATE(4552)] = 201658, + [SMALL_STATE(4553)] = 201679, + [SMALL_STATE(4554)] = 201700, + [SMALL_STATE(4555)] = 201721, + [SMALL_STATE(4556)] = 201740, + [SMALL_STATE(4557)] = 201761, + [SMALL_STATE(4558)] = 201782, + [SMALL_STATE(4559)] = 201803, + [SMALL_STATE(4560)] = 201824, + [SMALL_STATE(4561)] = 201845, + [SMALL_STATE(4562)] = 201866, + [SMALL_STATE(4563)] = 201887, + [SMALL_STATE(4564)] = 201908, + [SMALL_STATE(4565)] = 201929, + [SMALL_STATE(4566)] = 201950, + [SMALL_STATE(4567)] = 201971, + [SMALL_STATE(4568)] = 201992, + [SMALL_STATE(4569)] = 202013, + [SMALL_STATE(4570)] = 202034, + [SMALL_STATE(4571)] = 202055, + [SMALL_STATE(4572)] = 202076, + [SMALL_STATE(4573)] = 202097, + [SMALL_STATE(4574)] = 202118, + [SMALL_STATE(4575)] = 202139, + [SMALL_STATE(4576)] = 202160, + [SMALL_STATE(4577)] = 202181, + [SMALL_STATE(4578)] = 202202, + [SMALL_STATE(4579)] = 202223, + [SMALL_STATE(4580)] = 202244, + [SMALL_STATE(4581)] = 202265, + [SMALL_STATE(4582)] = 202286, + [SMALL_STATE(4583)] = 202307, + [SMALL_STATE(4584)] = 202328, + [SMALL_STATE(4585)] = 202349, + [SMALL_STATE(4586)] = 202370, + [SMALL_STATE(4587)] = 202391, + [SMALL_STATE(4588)] = 202412, + [SMALL_STATE(4589)] = 202433, + [SMALL_STATE(4590)] = 202454, + [SMALL_STATE(4591)] = 202475, + [SMALL_STATE(4592)] = 202496, + [SMALL_STATE(4593)] = 202517, + [SMALL_STATE(4594)] = 202538, + [SMALL_STATE(4595)] = 202559, + [SMALL_STATE(4596)] = 202580, + [SMALL_STATE(4597)] = 202601, + [SMALL_STATE(4598)] = 202622, + [SMALL_STATE(4599)] = 202643, + [SMALL_STATE(4600)] = 202664, + [SMALL_STATE(4601)] = 202685, + [SMALL_STATE(4602)] = 202706, + [SMALL_STATE(4603)] = 202727, + [SMALL_STATE(4604)] = 202748, + [SMALL_STATE(4605)] = 202769, + [SMALL_STATE(4606)] = 202790, + [SMALL_STATE(4607)] = 202811, + [SMALL_STATE(4608)] = 202832, + [SMALL_STATE(4609)] = 202853, + [SMALL_STATE(4610)] = 202874, + [SMALL_STATE(4611)] = 202895, + [SMALL_STATE(4612)] = 202916, + [SMALL_STATE(4613)] = 202937, + [SMALL_STATE(4614)] = 202958, + [SMALL_STATE(4615)] = 202979, + [SMALL_STATE(4616)] = 203000, + [SMALL_STATE(4617)] = 203021, + [SMALL_STATE(4618)] = 203042, + [SMALL_STATE(4619)] = 203063, + [SMALL_STATE(4620)] = 203084, + [SMALL_STATE(4621)] = 203105, + [SMALL_STATE(4622)] = 203126, + [SMALL_STATE(4623)] = 203147, + [SMALL_STATE(4624)] = 203164, + [SMALL_STATE(4625)] = 203183, + [SMALL_STATE(4626)] = 203204, + [SMALL_STATE(4627)] = 203225, + [SMALL_STATE(4628)] = 203246, + [SMALL_STATE(4629)] = 203267, + [SMALL_STATE(4630)] = 203288, + [SMALL_STATE(4631)] = 203307, + [SMALL_STATE(4632)] = 203326, + [SMALL_STATE(4633)] = 203347, + [SMALL_STATE(4634)] = 203368, + [SMALL_STATE(4635)] = 203389, + [SMALL_STATE(4636)] = 203410, + [SMALL_STATE(4637)] = 203431, + [SMALL_STATE(4638)] = 203452, + [SMALL_STATE(4639)] = 203473, + [SMALL_STATE(4640)] = 203494, + [SMALL_STATE(4641)] = 203515, + [SMALL_STATE(4642)] = 203536, + [SMALL_STATE(4643)] = 203557, + [SMALL_STATE(4644)] = 203578, + [SMALL_STATE(4645)] = 203599, + [SMALL_STATE(4646)] = 203620, + [SMALL_STATE(4647)] = 203641, + [SMALL_STATE(4648)] = 203662, + [SMALL_STATE(4649)] = 203683, + [SMALL_STATE(4650)] = 203704, + [SMALL_STATE(4651)] = 203725, + [SMALL_STATE(4652)] = 203746, + [SMALL_STATE(4653)] = 203767, + [SMALL_STATE(4654)] = 203788, + [SMALL_STATE(4655)] = 203809, + [SMALL_STATE(4656)] = 203830, + [SMALL_STATE(4657)] = 203847, + [SMALL_STATE(4658)] = 203866, + [SMALL_STATE(4659)] = 203887, + [SMALL_STATE(4660)] = 203906, + [SMALL_STATE(4661)] = 203925, + [SMALL_STATE(4662)] = 203946, + [SMALL_STATE(4663)] = 203967, + [SMALL_STATE(4664)] = 203988, + [SMALL_STATE(4665)] = 204009, + [SMALL_STATE(4666)] = 204030, + [SMALL_STATE(4667)] = 204051, + [SMALL_STATE(4668)] = 204072, + [SMALL_STATE(4669)] = 204093, + [SMALL_STATE(4670)] = 204114, + [SMALL_STATE(4671)] = 204135, + [SMALL_STATE(4672)] = 204156, + [SMALL_STATE(4673)] = 204174, + [SMALL_STATE(4674)] = 204192, + [SMALL_STATE(4675)] = 204210, + [SMALL_STATE(4676)] = 204228, + [SMALL_STATE(4677)] = 204246, + [SMALL_STATE(4678)] = 204260, + [SMALL_STATE(4679)] = 204276, + [SMALL_STATE(4680)] = 204294, + [SMALL_STATE(4681)] = 204308, + [SMALL_STATE(4682)] = 204322, + [SMALL_STATE(4683)] = 204340, + [SMALL_STATE(4684)] = 204358, + [SMALL_STATE(4685)] = 204376, + [SMALL_STATE(4686)] = 204392, + [SMALL_STATE(4687)] = 204405, + [SMALL_STATE(4688)] = 204420, + [SMALL_STATE(4689)] = 204435, + [SMALL_STATE(4690)] = 204450, + [SMALL_STATE(4691)] = 204465, + [SMALL_STATE(4692)] = 204480, + [SMALL_STATE(4693)] = 204495, + [SMALL_STATE(4694)] = 204508, + [SMALL_STATE(4695)] = 204523, + [SMALL_STATE(4696)] = 204538, + [SMALL_STATE(4697)] = 204553, + [SMALL_STATE(4698)] = 204566, + [SMALL_STATE(4699)] = 204581, + [SMALL_STATE(4700)] = 204596, + [SMALL_STATE(4701)] = 204611, + [SMALL_STATE(4702)] = 204626, + [SMALL_STATE(4703)] = 204641, + [SMALL_STATE(4704)] = 204656, + [SMALL_STATE(4705)] = 204671, + [SMALL_STATE(4706)] = 204684, + [SMALL_STATE(4707)] = 204699, + [SMALL_STATE(4708)] = 204712, + [SMALL_STATE(4709)] = 204727, + [SMALL_STATE(4710)] = 204742, + [SMALL_STATE(4711)] = 204757, + [SMALL_STATE(4712)] = 204772, + [SMALL_STATE(4713)] = 204787, + [SMALL_STATE(4714)] = 204802, + [SMALL_STATE(4715)] = 204817, + [SMALL_STATE(4716)] = 204832, + [SMALL_STATE(4717)] = 204847, + [SMALL_STATE(4718)] = 204862, + [SMALL_STATE(4719)] = 204877, + [SMALL_STATE(4720)] = 204892, + [SMALL_STATE(4721)] = 204907, + [SMALL_STATE(4722)] = 204922, + [SMALL_STATE(4723)] = 204937, + [SMALL_STATE(4724)] = 204952, + [SMALL_STATE(4725)] = 204967, + [SMALL_STATE(4726)] = 204982, + [SMALL_STATE(4727)] = 204997, + [SMALL_STATE(4728)] = 205012, + [SMALL_STATE(4729)] = 205027, + [SMALL_STATE(4730)] = 205042, + [SMALL_STATE(4731)] = 205057, + [SMALL_STATE(4732)] = 205072, + [SMALL_STATE(4733)] = 205087, + [SMALL_STATE(4734)] = 205102, + [SMALL_STATE(4735)] = 205117, + [SMALL_STATE(4736)] = 205132, + [SMALL_STATE(4737)] = 205147, + [SMALL_STATE(4738)] = 205162, + [SMALL_STATE(4739)] = 205177, + [SMALL_STATE(4740)] = 205192, + [SMALL_STATE(4741)] = 205207, + [SMALL_STATE(4742)] = 205222, + [SMALL_STATE(4743)] = 205237, + [SMALL_STATE(4744)] = 205252, + [SMALL_STATE(4745)] = 205267, + [SMALL_STATE(4746)] = 205282, + [SMALL_STATE(4747)] = 205297, + [SMALL_STATE(4748)] = 205310, + [SMALL_STATE(4749)] = 205325, + [SMALL_STATE(4750)] = 205340, + [SMALL_STATE(4751)] = 205355, + [SMALL_STATE(4752)] = 205368, + [SMALL_STATE(4753)] = 205383, + [SMALL_STATE(4754)] = 205398, + [SMALL_STATE(4755)] = 205413, + [SMALL_STATE(4756)] = 205428, + [SMALL_STATE(4757)] = 205443, + [SMALL_STATE(4758)] = 205458, + [SMALL_STATE(4759)] = 205473, + [SMALL_STATE(4760)] = 205488, + [SMALL_STATE(4761)] = 205503, + [SMALL_STATE(4762)] = 205518, + [SMALL_STATE(4763)] = 205530, + [SMALL_STATE(4764)] = 205542, + [SMALL_STATE(4765)] = 205554, + [SMALL_STATE(4766)] = 205566, + [SMALL_STATE(4767)] = 205578, + [SMALL_STATE(4768)] = 205590, + [SMALL_STATE(4769)] = 205602, + [SMALL_STATE(4770)] = 205614, + [SMALL_STATE(4771)] = 205626, + [SMALL_STATE(4772)] = 205638, + [SMALL_STATE(4773)] = 205650, + [SMALL_STATE(4774)] = 205662, + [SMALL_STATE(4775)] = 205674, + [SMALL_STATE(4776)] = 205686, + [SMALL_STATE(4777)] = 205698, + [SMALL_STATE(4778)] = 205710, + [SMALL_STATE(4779)] = 205722, + [SMALL_STATE(4780)] = 205734, + [SMALL_STATE(4781)] = 205746, + [SMALL_STATE(4782)] = 205758, + [SMALL_STATE(4783)] = 205770, + [SMALL_STATE(4784)] = 205782, + [SMALL_STATE(4785)] = 205794, + [SMALL_STATE(4786)] = 205806, + [SMALL_STATE(4787)] = 205818, + [SMALL_STATE(4788)] = 205830, + [SMALL_STATE(4789)] = 205842, + [SMALL_STATE(4790)] = 205854, + [SMALL_STATE(4791)] = 205866, + [SMALL_STATE(4792)] = 205878, + [SMALL_STATE(4793)] = 205890, + [SMALL_STATE(4794)] = 205902, + [SMALL_STATE(4795)] = 205914, + [SMALL_STATE(4796)] = 205926, + [SMALL_STATE(4797)] = 205938, + [SMALL_STATE(4798)] = 205950, + [SMALL_STATE(4799)] = 205962, + [SMALL_STATE(4800)] = 205974, + [SMALL_STATE(4801)] = 205986, + [SMALL_STATE(4802)] = 205998, + [SMALL_STATE(4803)] = 206010, + [SMALL_STATE(4804)] = 206022, + [SMALL_STATE(4805)] = 206034, + [SMALL_STATE(4806)] = 206046, + [SMALL_STATE(4807)] = 206058, + [SMALL_STATE(4808)] = 206070, + [SMALL_STATE(4809)] = 206082, + [SMALL_STATE(4810)] = 206094, + [SMALL_STATE(4811)] = 206106, + [SMALL_STATE(4812)] = 206118, + [SMALL_STATE(4813)] = 206130, + [SMALL_STATE(4814)] = 206142, + [SMALL_STATE(4815)] = 206154, + [SMALL_STATE(4816)] = 206166, + [SMALL_STATE(4817)] = 206178, + [SMALL_STATE(4818)] = 206190, + [SMALL_STATE(4819)] = 206202, + [SMALL_STATE(4820)] = 206214, + [SMALL_STATE(4821)] = 206226, + [SMALL_STATE(4822)] = 206238, + [SMALL_STATE(4823)] = 206250, + [SMALL_STATE(4824)] = 206262, + [SMALL_STATE(4825)] = 206274, + [SMALL_STATE(4826)] = 206286, + [SMALL_STATE(4827)] = 206298, + [SMALL_STATE(4828)] = 206310, + [SMALL_STATE(4829)] = 206322, + [SMALL_STATE(4830)] = 206334, + [SMALL_STATE(4831)] = 206346, + [SMALL_STATE(4832)] = 206358, + [SMALL_STATE(4833)] = 206370, + [SMALL_STATE(4834)] = 206382, + [SMALL_STATE(4835)] = 206394, + [SMALL_STATE(4836)] = 206406, + [SMALL_STATE(4837)] = 206418, + [SMALL_STATE(4838)] = 206430, + [SMALL_STATE(4839)] = 206442, + [SMALL_STATE(4840)] = 206454, + [SMALL_STATE(4841)] = 206466, + [SMALL_STATE(4842)] = 206478, + [SMALL_STATE(4843)] = 206490, + [SMALL_STATE(4844)] = 206502, + [SMALL_STATE(4845)] = 206514, + [SMALL_STATE(4846)] = 206526, + [SMALL_STATE(4847)] = 206538, + [SMALL_STATE(4848)] = 206550, + [SMALL_STATE(4849)] = 206562, + [SMALL_STATE(4850)] = 206574, + [SMALL_STATE(4851)] = 206586, + [SMALL_STATE(4852)] = 206598, + [SMALL_STATE(4853)] = 206610, + [SMALL_STATE(4854)] = 206622, + [SMALL_STATE(4855)] = 206634, + [SMALL_STATE(4856)] = 206646, + [SMALL_STATE(4857)] = 206658, + [SMALL_STATE(4858)] = 206670, + [SMALL_STATE(4859)] = 206682, + [SMALL_STATE(4860)] = 206694, + [SMALL_STATE(4861)] = 206706, + [SMALL_STATE(4862)] = 206718, + [SMALL_STATE(4863)] = 206730, + [SMALL_STATE(4864)] = 206742, + [SMALL_STATE(4865)] = 206754, + [SMALL_STATE(4866)] = 206766, + [SMALL_STATE(4867)] = 206778, + [SMALL_STATE(4868)] = 206790, + [SMALL_STATE(4869)] = 206802, + [SMALL_STATE(4870)] = 206814, + [SMALL_STATE(4871)] = 206826, + [SMALL_STATE(4872)] = 206838, + [SMALL_STATE(4873)] = 206850, + [SMALL_STATE(4874)] = 206862, + [SMALL_STATE(4875)] = 206874, + [SMALL_STATE(4876)] = 206886, + [SMALL_STATE(4877)] = 206898, + [SMALL_STATE(4878)] = 206910, + [SMALL_STATE(4879)] = 206922, + [SMALL_STATE(4880)] = 206934, + [SMALL_STATE(4881)] = 206946, + [SMALL_STATE(4882)] = 206958, + [SMALL_STATE(4883)] = 206970, + [SMALL_STATE(4884)] = 206982, + [SMALL_STATE(4885)] = 206994, + [SMALL_STATE(4886)] = 207006, + [SMALL_STATE(4887)] = 207018, + [SMALL_STATE(4888)] = 207030, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -397798,5477 +340142,4839 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 0), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(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), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 1), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 1), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(4888), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(617), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(4888), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(770), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(838), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 1), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 1), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 1), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 1), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(821), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(591), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(665), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(534), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(819), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(482), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 2), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(201), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(633), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 2), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_operator_identifier, 1), SHIFT(4888), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 1), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 2), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 3), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 3), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 4), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 3), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 5), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 5), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 5), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 3), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 4), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 4), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 4), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 4), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 3), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 3), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 3), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 6), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 6), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 5), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 5), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_identifier, 1), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_identifier, 1), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_identifier, 1), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_identifier, 1), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 2), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 2), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 3), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 3), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 7), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 7), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 2), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 2), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1017), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminator_repeat1, 2), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1021), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 2), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 2), + [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1025), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1027), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1030), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1032), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_dot, 2), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_keyword, 2), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_keyword, 2), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(273), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_with_parentheses, 1), + [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_with_parentheses, 1), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 2), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 2), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 2), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 2), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 2, .production_id = 1), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 2, .production_id = 1), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 2), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 2), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 4), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 4), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 4), + [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 4), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [3028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 3), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 3), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 3), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 3), + [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), + [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2), + [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 2), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 2), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_charlist, 1), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_charlist, 1), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 2), + [3062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 2), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 3), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 3), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), + [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_call, 2), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_call, 2), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 3), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 3), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 2), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 2), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 2), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 2), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 2), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 2), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 2), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 2), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 2), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 2), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 2), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 2), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 2), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 2), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 2), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 2), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 3), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 3), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 3), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 3), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 3), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 3), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 3), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 3), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 3), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 3), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 3), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 3), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 3), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 3), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 3), + [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 3), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil, 1), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil, 1), + [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 3), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 3), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, .production_id = 9), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, .production_id = 9), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 3), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 3), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 2), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 2), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 2), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 2), + [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 2), + [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 2), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 3), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 3), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 3), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 3), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 3), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 3), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 3), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 3), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 2), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 2), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 2), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 2), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 2), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 2), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 3), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 3), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 3), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 3), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 3), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 3), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 3), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 3), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 2), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 2), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 2), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 2), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 3), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 3), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 3), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 3), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_atom, 2), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_atom, 2), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 2), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 2), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 1), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 1), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 2), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 2), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 3), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 3), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), + [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 4), + [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 4), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 4), + [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 4), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 2), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 2), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 4, .production_id = 1), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 4, .production_id = 1), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 4), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 4), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_call, 4), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_call, 4), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 3), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 3), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 2), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 2), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(859), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 4), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 4), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, .production_id = 8), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, .production_id = 8), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 1), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 1), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 2), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 2), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3627), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 3), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 3), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_just_do_block, 2), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_just_do_block, 2), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 3, .production_id = 1), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 3, .production_id = 1), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 3), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 3), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 2), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 2), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3622), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [3491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(884), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 2), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 2), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 1), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 1), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 2), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(317), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3599), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 3), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1020), + [3615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(258), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1020), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(259), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3637), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(875), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3597), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3629), + [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(841), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [3929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3600), + [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(822), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [3997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3603), + [4000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(795), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3632), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3639), + [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(465), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(513), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), + [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1031), + [4122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(348), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1031), + [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(345), + [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(798), + [4222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3602), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3630), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1033), + [4285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(349), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(689), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1033), + [4380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(347), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3607), + [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3601), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [4397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3628), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3614), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3636), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [4456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3624), + [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 1), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3618), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [4522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(275), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), + [4559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT(275), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3609), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 1), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses_with_guard, 3), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [4655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1, .production_id = 1), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses_with_guard, 3, .dynamic_precedence = 1), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 2), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [5413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 3), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(38), + [5420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(39), + [5423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(37), + [5426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), + [5428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(40), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1026), + [5460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(129), + [5463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1020), + [5470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(260), + [5473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(1029), + [5476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(659), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1029), + [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(628), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 2), + [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 3), + [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 3), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), + [5795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(589), + [5798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(3673), + [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(3673), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), + [5842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(861), + [5845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(3680), + [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(3680), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), + [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(815), + [5856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(3681), + [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(3681), + [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), + [5864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(782), + [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(3682), + [5870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(3682), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [5885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [6229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [6643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), + [6645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(594), + [6648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(3872), + [6651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(3872), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [6816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), + [6818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(590), + [6821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(3918), + [6824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(3918), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [6843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), + [6845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(632), + [6848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(3923), + [6851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(3923), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), + [6880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(640), + [6883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(3928), + [6886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(3928), + [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), + [6891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(661), + [6894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(3929), + [6897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(3929), + [6900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), + [6902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(664), + [6905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(3930), + [6908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(3930), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [7725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3608), + [7728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(128), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [7733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(631), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [7742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(576), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [7755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(553), + [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [7778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3631), + [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1033), + [7800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(346), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [7811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 1), + [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [7815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1031), + [7818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(350), + [7821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(823), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(1026), + [7845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(139), + [7848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [7860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(688), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 2), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [7995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [8135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), + [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [8305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [8657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [8893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), + [8895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(4539), + [8898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(4539), + [8901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), + [8903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(4540), + [8906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(4540), + [8909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), + [8911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(4541), + [8914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(4541), + [8917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), + [8919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(4542), + [8922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(4542), + [8925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), + [8927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(4543), + [8930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(4543), + [8933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), + [8935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(4544), + [8938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(4544), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [8993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), + [8995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(4570), + [8998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(4570), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [9007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), + [9009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(4572), + [9012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(4572), + [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [9083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), + [9085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(4585), + [9088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(4585), + [9091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), + [9093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(4586), + [9096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(4586), + [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [9331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [9379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT_REPEAT(557), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [9458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(615), + [9461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 4), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [9465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 3), + [9467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 2), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [9471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(3619), + [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [9478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 6), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [9486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 5), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [9520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [9560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 4), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [9566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 4), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [9578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [9660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [9664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [9708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [9714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [9736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [9770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 3), + [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [9802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 4), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [9808] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), }; #ifdef __cplusplus diff --git a/src/scanner.cc b/src/scanner.cc index ca52659..b92ef66 100644 --- a/src/scanner.cc +++ b/src/scanner.cc @@ -2,9 +2,8 @@ namespace { +// See references in grammar.externals 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, @@ -15,7 +14,6 @@ enum TokenType { QUOTED_CONTENT_I_ANGLE, QUOTED_CONTENT_I_BAR, QUOTED_CONTENT_I_SLASH, - QUOTED_CONTENT_SINGLE, QUOTED_CONTENT_DOUBLE, QUOTED_CONTENT_HEREDOC_SINGLE, @@ -27,200 +25,17 @@ enum TokenType { QUOTED_CONTENT_BAR, QUOTED_CONTENT_SLASH, - KEYWORD_SPECIAL_LITERAL, - ATOM_START, - KEYWORD_END, - NEWLINE_BEFORE_DO, - NEWLINE_BEFORE_BINARY_OP, + NEWLINE_BEFORE_BINARY_OPERATOR, NEWLINE_BEFORE_COMMENT, - BEFORE_UNARY_OP, + BEFORE_UNARY_OPERATOR, - NOT_IN + NOT_IN, + + QUOTED_ATOM_START }; -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); } @@ -229,25 +44,26 @@ 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; +// Note: some checks require several lexer steps of lookahead +// and alter its state, for these we use names check_* - if (lexer->lookahead == ':') { - advance(lexer); - if (lexer->lookahead == ':') { - // ::: - return true; - } else { - return false; - } - } else { - return !is_whitespace(lexer->lookahead); - } +bool is_whitespace(int32_t c) { + return c == ' ' || c == '\t' || c == '\n' || c == '\r'; } -bool is_keyword_end(TSLexer* lexer) { +bool is_inline_whitespace(int32_t c) { + return c == ' ' || c == '\t'; +} + +bool is_newline(int32_t c) { + return c == '\n'; +} + +bool is_digit(int32_t c) { + return '0' <= c && c <= '9'; +} + +bool check_keyword_end(TSLexer* lexer) { if (lexer->lookahead == ':') { advance(lexer); return is_whitespace(lexer->lookahead); @@ -255,20 +71,10 @@ bool is_keyword_end(TSLexer* lexer) { 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) { +bool check_operator_end(TSLexer* lexer) { // Keyword if (lexer->lookahead == ':') { - return !is_keyword_end(lexer); + return !check_keyword_end(lexer); } while (is_inline_whitespace(lexer->lookahead)) { advance(lexer); @@ -287,7 +93,7 @@ bool is_operator_end(TSLexer* lexer) { return true; } -const char TOKEN_TERMINATORS[] = { +const char token_terminators[] = { // Operator starts '@', '.', '+', '-', '^', '-', '*', '/', '<', '>', '|', '~', '=', '&', '\\', '%', // Delimiters @@ -299,10 +105,10 @@ const char TOKEN_TERMINATORS[] = { }; // Note: this is a heuristic as we only use this to distinguish word -// operators and we don't want to include complex Unicode ranges. +// 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]) { + for (const char& terminator : token_terminators) { + if (c == terminator) { return true; } } @@ -310,94 +116,404 @@ bool is_token_end(int32_t c) { 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); +struct QuotedContentInfo { + const TokenType token_type; + const bool supports_interpol; + const int32_t end_delimiter; + const uint8_t delimiter_length; +}; - // 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); +const QuotedContentInfo quoted_content_infos[] = { + { QUOTED_CONTENT_I_SINGLE, true, '\'', 1 }, + { QUOTED_CONTENT_I_DOUBLE, true, '"', 1 }, + { QUOTED_CONTENT_I_HEREDOC_SINGLE, true, '\'', 3 }, + { QUOTED_CONTENT_I_HEREDOC_DOUBLE, true, '"', 3 }, + { QUOTED_CONTENT_I_PARENTHESIS, true, ')', 1 }, + { QUOTED_CONTENT_I_CURLY, true, '}', 1 }, + { QUOTED_CONTENT_I_SQUARE, true, ']', 1 }, + { QUOTED_CONTENT_I_ANGLE, true, '>', 1 }, + { QUOTED_CONTENT_I_BAR, true, '|', 1 }, + { QUOTED_CONTENT_I_SLASH, true, '/', 1 }, + { QUOTED_CONTENT_SINGLE, false, '\'', 1 }, + { QUOTED_CONTENT_DOUBLE, false, '"', 1 }, + { QUOTED_CONTENT_HEREDOC_SINGLE, false, '\'', 3 }, + { QUOTED_CONTENT_HEREDOC_DOUBLE, false, '"', 3 }, + { QUOTED_CONTENT_PARENTHESIS, false, ')', 1 }, + { QUOTED_CONTENT_CURLY, false, '}', 1 }, + { QUOTED_CONTENT_SQUARE, false, ']', 1 }, + { QUOTED_CONTENT_ANGLE, false, '>', 1 }, + { QUOTED_CONTENT_BAR, false, '|', 1 }, + { QUOTED_CONTENT_SLASH, false, '/', 1 }, +}; - lexer->result_symbol = token_type; +const uint8_t quoted_content_infos_length = sizeof(quoted_content_infos) / sizeof(QuotedContentInfo); - for (bool has_content = false; true; has_content = true) { - lexer->mark_end(lexer); +int8_t find_quoted_token_info(const bool* valid_symbols) { + // Quoted tokens 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 -1; + } - if (lexer->lookahead == end_delimiter) { - uint8_t length = 1; + for (uint8_t i = 0; i < quoted_content_infos_length; i++) { + if (valid_symbols[quoted_content_infos[i].token_type]) { + return i; + } + } - while (length < delimiter_length) { - advance(lexer); - if (lexer->lookahead == end_delimiter) { - length++; - } else { - break; - } - } + return -1; +} - if (length == delimiter_length) { - return has_content; - } - } else { - switch (lexer->lookahead) { - case '#': - advance(lexer); +bool scan_quoted_content(TSLexer* lexer, const QuotedContentInfo& info) { + lexer->result_symbol = info.token_type; - if (supports_interpol && lexer->lookahead == '{') { - return has_content; - } + for (bool has_content = false; true; has_content = true) { + lexer->mark_end(lexer); - break; + if (lexer->lookahead == info.end_delimiter) { + uint8_t length = 1; - 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); + while (length < info.delimiter_length) { + advance(lexer); + if (lexer->lookahead == info.end_delimiter) { + length++; + } else { + break; } } - } + if (length == info.delimiter_length) { + return has_content; + } + } else { + if (lexer->lookahead == '#') { + advance(lexer); + if (info.supports_interpol && lexer->lookahead == '{') { + return has_content; + } + } else if (lexer->lookahead == '\\') { + if (info.supports_interpol) { + return has_content; + } else { + advance(lexer); + if (lexer->lookahead == info.end_delimiter) { + return has_content; + } + } + } else if (lexer->lookahead == '\0') { + return false; + } else { + advance(lexer); + } + } + } + + return false; +} + +bool scan_newline(TSLexer* lexer, const bool* valid_symbols) { + 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 (lexer->lookahead == 'd' && valid_symbols[NEWLINE_BEFORE_DO]) { + lexer->result_symbol = NEWLINE_BEFORE_DO; + advance(lexer); + if (lexer->lookahead == 'o') { + advance(lexer); + return is_token_end(lexer->lookahead); + } return false; } - if (lexer->lookahead == ':') { - if (valid_symbols[ATOM_START] || valid_symbols[KEYWORD_END]) { - advance(lexer); + if (valid_symbols[NEWLINE_BEFORE_BINARY_OPERATOR] ) { + lexer->result_symbol = NEWLINE_BEFORE_BINARY_OPERATOR; - 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); + // &&, &&& + if (lexer->lookahead == '&') { + advance(lexer); + if (lexer->lookahead == '&') { + advance(lexer); + if (lexer->lookahead == '&') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + } + // =, ==, ===, =~, => + } else if (lexer->lookahead == '=') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + } else if (lexer->lookahead == '~') { + advance(lexer); + return check_operator_end(lexer); + } else if (lexer->lookahead == '>') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + // :: + } else if (lexer->lookahead == ':') { + advance(lexer); + if (lexer->lookahead == ':') { + advance(lexer); + // Ignore ::: atom + if (lexer->lookahead == ':') return false; + return check_operator_end(lexer); + } + // ++, +++ + } else if (lexer->lookahead == '+') { + advance(lexer); + if (lexer->lookahead == '+') { + advance(lexer); + if (lexer->lookahead == '+') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + } + // --, ---, -> + } else if (lexer->lookahead == '-') { + advance(lexer); + if (lexer->lookahead == '-') { + advance(lexer); + if (lexer->lookahead == '-') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + } else if (lexer->lookahead == '>') { + advance(lexer); + return check_operator_end(lexer); + } + // <, <=, <-, <>, <~, <~>, <|>, <<<, <<~ + } else if (lexer->lookahead == '<') { + advance(lexer); + if (lexer->lookahead == '=' || + lexer->lookahead == '-' || + lexer->lookahead == '>') { + advance(lexer); + return check_operator_end(lexer); + } else if (lexer->lookahead == '~') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + } else if (lexer->lookahead == '|') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + return check_operator_end(lexer); + } + } else if (lexer->lookahead == '<') { + advance(lexer); + if (lexer->lookahead == '<' || + lexer->lookahead == '~') { + advance(lexer); + return check_operator_end(lexer); + } + } else { + return check_operator_end(lexer); + } + // >, >=, >>> + } else if (lexer->lookahead == '>') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + return check_operator_end(lexer); + } else if (lexer->lookahead == '>') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + return check_operator_end(lexer); + } + } else { + return check_operator_end(lexer); + } + // ^^^ + } else if (lexer->lookahead == '^') { + advance(lexer); + if (lexer->lookahead == '^') { + advance(lexer); + if (lexer->lookahead == '^') { + advance(lexer); + return check_operator_end(lexer); + } + } + // !=, !== + } else if (lexer->lookahead == '!') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + if (lexer->lookahead == '=') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + } + // ~>, ~>> + } else if (lexer->lookahead == '~') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + if (lexer->lookahead == '>') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + } + // |, ||, |||, |> + } else if (lexer->lookahead == '|') { + advance(lexer); + if (lexer->lookahead == '|') { + advance(lexer); + if (lexer->lookahead == '|') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + } else if (lexer->lookahead == '>') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + // *, ** + } else if (lexer->lookahead == '*') { + advance(lexer); + if (lexer->lookahead == '*') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + // / // + } else if (lexer->lookahead == '/') { + advance(lexer); + if (lexer->lookahead == '/') { + advance(lexer); + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + // ., .. + } else if (lexer->lookahead == '.') { + advance(lexer); + if (lexer->lookahead == '.') { + advance(lexer); + // Ignore ... identifier + if (lexer->lookahead == '.') return false; + return check_operator_end(lexer); + } else { + return check_operator_end(lexer); + } + // double slash + } else if (lexer->lookahead == '\\') { + advance(lexer); + if (lexer->lookahead == '\\') { + advance(lexer); + return check_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) && check_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) && check_operator_end(lexer); + } + } + // or + } else if (lexer->lookahead == 'o') { + advance(lexer); + if (lexer->lookahead == 'r') { + advance(lexer); + return is_token_end(lexer->lookahead) && check_operator_end(lexer); + } + // in + } else if (lexer->lookahead == 'i') { + advance(lexer); + if (lexer->lookahead == 'n') { + advance(lexer); + return is_token_end(lexer->lookahead) && check_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) && check_operator_end(lexer); + } + } } } - - return false; } } + return false; +} + +bool scan(TSLexer* lexer, const bool* valid_symbols) { + int8_t quoted_content_info_idx = find_quoted_token_info(valid_symbols); + + // Quoted content, which matches any character except for close + // delimiters, escapes and interpolations + if (quoted_content_info_idx != -1) { + const QuotedContentInfo& info = quoted_content_infos[quoted_content_info_idx]; + return scan_quoted_content(lexer, info); + } + bool skipped_whitespace = false; while (is_inline_whitespace(lexer->lookahead)) { @@ -405,9 +521,17 @@ bool scan(TSLexer* lexer, const bool* valid_symbols) { skip(lexer); } - // TODO moves this below together with other functions on this level + // Newline, which is either tokenized as a special newline or ignored + if (is_newline(lexer->lookahead) && ( + valid_symbols[NEWLINE_BEFORE_DO] || + valid_symbols[NEWLINE_BEFORE_BINARY_OPERATOR] || + valid_symbols[NEWLINE_BEFORE_COMMENT])) { + return scan_newline(lexer, valid_symbols); + } + + // before unary + if (lexer->lookahead == '+') { - if (skipped_whitespace && valid_symbols[BEFORE_UNARY_OP]) { + if (skipped_whitespace && valid_symbols[BEFORE_UNARY_OPERATOR]) { lexer->mark_end(lexer); advance(lexer); if (lexer->lookahead == '+' || lexer->lookahead == ':' || lexer->lookahead == '/') { @@ -416,14 +540,14 @@ bool scan(TSLexer* lexer, const bool* valid_symbols) { if (is_whitespace(lexer->lookahead)) { return false; } - lexer->result_symbol = BEFORE_UNARY_OP; + lexer->result_symbol = BEFORE_UNARY_OPERATOR; return true; } - } - - if (lexer->lookahead == '-') { - if (skipped_whitespace && valid_symbols[BEFORE_UNARY_OP]) { + // before unary - + } else if (lexer->lookahead == '-') { + if (skipped_whitespace && valid_symbols[BEFORE_UNARY_OPERATOR]) { lexer->mark_end(lexer); + lexer->result_symbol = BEFORE_UNARY_OPERATOR; advance(lexer); if (lexer->lookahead == '-' || lexer->lookahead == '>' || lexer->lookahead == ':' || lexer->lookahead == '/') { return false; @@ -431,390 +555,39 @@ bool scan(TSLexer* lexer, const bool* valid_symbols) { 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; + // not in + } else if (lexer->lookahead == 'n') { + if (valid_symbols[NOT_IN]) { + lexer->result_symbol = NOT_IN; 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 == '&') { + if (lexer->lookahead == 't') { advance(lexer); - if (lexer->lookahead == '&') { + while (is_inline_whitespace(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') { + if (lexer->lookahead == 'i') { 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 is_token_end(lexer->lookahead); } } } } } - - 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 + // quoted atom start } else if (lexer->lookahead == ':') { - if (valid_symbols[ATOM_START]) { + if (valid_symbols[QUOTED_ATOM_START]) { advance(lexer); - return finish_atom_start(lexer); + lexer->mark_end(lexer); + lexer->result_symbol = QUOTED_ATOM_START; + if (lexer->lookahead == '"' || lexer->lookahead == '\'') { + return true; + } } } @@ -841,4 +614,5 @@ extern "C" { void tree_sitter_elixir_external_scanner_destroy(void* payload) {} } +// end anonymous namespace } diff --git a/test/corpus/comment.txt b/test/corpus/comment.txt index db7b183..b2ecdb2 100644 --- a/test/corpus/comment.txt +++ b/test/corpus/comment.txt @@ -91,7 +91,7 @@ does not match inside a string (source (string - (string_content)) + (quoted_content)) (string - (string_content) + (quoted_content) (interpolation (identifier)))) diff --git a/test/corpus/do_end.txt b/test/corpus/do_end.txt index d36f0ec..7be0596 100644 --- a/test/corpus/do_end.txt +++ b/test/corpus/do_end.txt @@ -223,8 +223,7 @@ end (identifier) (integer)) (body - (atom - (atom_literal))))))) + (atom)))))) ===================================== stab clause / arguments in parentheses @@ -245,8 +244,7 @@ end (identifier) (identifier)) (body - (atom - (atom_literal))))))) + (atom)))))) ===================================== stab clause / many clauses @@ -268,20 +266,17 @@ end (arguments (integer)) (body - (atom - (atom_literal)))) + (atom))) (stab_clause (arguments (integer)) (body - (atom - (atom_literal)))) + (atom))) (stab_clause (arguments (identifier)) (body - (atom - (atom_literal))))))) + (atom)))))) ===================================== stab clause / multiline expression @@ -327,8 +322,7 @@ end (call (identifier) (arguments)) - (atom - (atom_literal)))) + (atom))) (body (boolean)))))) @@ -773,8 +767,7 @@ end (arguments (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)))) (body (identifier))))))) diff --git a/test/corpus/edge_syntax.txt b/test/corpus/edge_syntax.txt index 4ccd52b..ddf16f5 100644 --- a/test/corpus/edge_syntax.txt +++ b/test/corpus/edge_syntax.txt @@ -114,6 +114,5 @@ def Mod.fun(x), do: 1 (identifier))) (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) diff --git a/test/corpus/expression/anonymous_function.txt b/test/corpus/expression/anonymous_function.txt index b81c342..536a239 100644 --- a/test/corpus/expression/anonymous_function.txt +++ b/test/corpus/expression/anonymous_function.txt @@ -142,20 +142,17 @@ end (arguments (integer)) (body - (atom - (atom_literal)))) + (atom))) (stab_clause (arguments (integer)) (body - (atom - (atom_literal)))) + (atom))) (stab_clause (arguments (identifier)) (body - (atom - (atom_literal)))))) + (atom))))) ===================================== with guard / no arguments @@ -176,8 +173,7 @@ end (call (identifier) (arguments)) - (atom - (atom_literal)))) + (atom))) (body (boolean))))) @@ -305,8 +301,7 @@ end (map_content (keywords (pair - (keyword - (atom_literal)) + (keyword) (identifier)))))) (binary_operator (identifier) diff --git a/test/corpus/expression/call.txt b/test/corpus/expression/call.txt index f2ffb15..d02f5d7 100644 --- a/test/corpus/expression/call.txt +++ b/test/corpus/expression/call.txt @@ -33,12 +33,10 @@ fun([1, 2], option: true, other: 5) (integer)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (boolean)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -69,20 +67,17 @@ fun +: 1 (integer)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (boolean)) (pair - (keyword - (atom_literal)) + (keyword) (integer))))) (call (identifier) (arguments (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -104,12 +99,10 @@ fun [1, 2], (integer)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (boolean)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -155,8 +148,7 @@ outer_fun inner_fun do: 1 (arguments (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)))))))) ===================================== @@ -270,12 +262,10 @@ Mod.fun([1, 2], option: true, other: 5) (integer)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (boolean)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -304,12 +294,10 @@ Mod.fun [1, 2], option: true, other: 5 (integer)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (boolean)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -459,14 +447,14 @@ Mod.'fun'(a) (dot (alias) (string - (string_content))) + (quoted_content))) (arguments (identifier))) (call (dot (alias) (charlist - (string_content))) + (quoted_content))) (arguments (identifier)))) @@ -482,15 +470,14 @@ remote call / atom literal module (source (call (dot - (atom - (atom_literal)) + (atom) (identifier)) (arguments (identifier))) (call (dot - (atom - (string_content)) + (quoted_atom + (quoted_content)) (identifier)) (arguments (identifier)))) @@ -533,12 +520,10 @@ fun.([1, 2], option: true, other: 5) (integer)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (boolean)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -755,12 +740,10 @@ fun(option: true, other: 5,) (arguments (keywords (pair - (keyword - (atom_literal)) + (keyword) (boolean)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -812,8 +795,7 @@ map[:key] (identifier)) (access_call (identifier) - (atom - (atom_literal)))) + (atom))) ===================================== access syntax / does not allow whitespace @@ -845,14 +827,12 @@ map[:mod].fun (dot (identifier) (identifier))) - (atom - (atom_literal))) + (atom)) (call (dot (access_call (identifier) - (atom - (atom_literal))) + (atom)) (identifier)))) ===================================== @@ -870,23 +850,19 @@ access syntax / precedence with operators (unary_operator (access_call (identifier) - (atom - (atom_literal)))) + (atom))) (access_call (unary_operator (identifier)) - (atom - (atom_literal))) + (atom)) (unary_operator (access_call (identifier) - (atom - (atom_literal)))) + (atom))) (access_call (unary_operator (integer)) - (atom - (atom_literal)))) + (atom))) ===================================== double parenthesised call diff --git a/test/corpus/expression/operator.txt b/test/corpus/expression/operator.txt index 80ac535..e94f779 100644 --- a/test/corpus/expression/operator.txt +++ b/test/corpus/expression/operator.txt @@ -589,15 +589,11 @@ not in[y] (list (identifier))) (binary_operator - (atom - (atom_literal)) - (atom - (atom_literal))) + (atom) + (atom)) (binary_operator - (atom - (atom_literal)) - (atom - (atom_literal)))) + (atom) + (atom))) ===================================== multiline / unary over binary (precedence) diff --git a/test/corpus/expression/sigil.txt b/test/corpus/expression/sigil.txt index 8e8536a..e56f02a 100644 --- a/test/corpus/expression/sigil.txt +++ b/test/corpus/expression/sigil.txt @@ -14,14 +14,14 @@ simple literal --- (source - (sigil (sigil_name) (string_content)) - (sigil (sigil_name) (string_content)) - (sigil (sigil_name) (string_content)) - (sigil (sigil_name) (string_content)) - (sigil (sigil_name) (string_content)) - (sigil (sigil_name) (string_content)) - (sigil (sigil_name) (string_content)) - (sigil (sigil_name) (string_content))) + (sigil (sigil_name) (quoted_content)) + (sigil (sigil_name) (quoted_content)) + (sigil (sigil_name) (quoted_content)) + (sigil (sigil_name) (quoted_content)) + (sigil (sigil_name) (quoted_content)) + (sigil (sigil_name) (quoted_content)) + (sigil (sigil_name) (quoted_content)) + (sigil (sigil_name) (quoted_content))) ===================================== @@ -36,7 +36,7 @@ line 2" (source (sigil (sigil_name) - (string_content))) + (quoted_content))) ===================================== interpolation @@ -53,22 +53,22 @@ interpolation (source (sigil (sigil_name) - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content)) + (quoted_content)) (sigil (sigil_name) - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content)) + (quoted_content)) (sigil (sigil_name) - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content))) + (quoted_content))) ===================================== nested interpolation @@ -81,14 +81,14 @@ nested interpolation (source (sigil (sigil_name) - (string_content) + (quoted_content) (interpolation (sigil (sigil_name) - (string_content) + (quoted_content) (interpolation (integer)))) - (string_content))) + (quoted_content))) ===================================== escape sequence @@ -101,26 +101,26 @@ escape sequence (source (sigil (sigil_name) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) (escape_sequence) - (string_content))) + (quoted_content))) ===================================== escaped interpolation @@ -134,7 +134,7 @@ escaped interpolation (sigil (sigil_name) (escape_sequence) - (string_content))) + (quoted_content))) ===================================== upper sigil / no interpolation @@ -147,7 +147,7 @@ upper sigil / no interpolation (source (sigil (sigil_name) - (string_content))) + (quoted_content))) ===================================== upper sigil / no escape sequence @@ -160,7 +160,7 @@ upper sigil / no escape sequence (source (sigil (sigil_name) - (string_content))) + (quoted_content))) ===================================== upper sigil / escape terminator @@ -175,19 +175,19 @@ upper sigil / escape terminator (source (sigil (sigil_name) - (string_content) + (quoted_content) (escape_sequence) - (string_content)) + (quoted_content)) (sigil (sigil_name) - (string_content) + (quoted_content) (escape_sequence) - (string_content)) + (quoted_content)) (sigil (sigil_name) - (string_content) + (quoted_content) (escape_sequence) - (string_content))) + (quoted_content))) ===================================== heredoc delimiter @@ -208,10 +208,10 @@ with 'quotes' (source (sigil (sigil_name) - (string_content)) + (quoted_content)) (sigil (sigil_name) - (string_content))) + (quoted_content))) ===================================== modifiers @@ -225,11 +225,11 @@ modifiers (source (sigil (sigil_name) - (string_content) + (quoted_content) (sigil_modifiers)) (sigil (sigil_name) - (string_content) + (quoted_content) (sigil_modifiers))) ===================================== @@ -244,4 +244,4 @@ modifiers (sigil (sigil_name) (ERROR) - (string_content))) + (quoted_content))) diff --git a/test/corpus/integration/function_definition.txt b/test/corpus/integration/function_definition.txt index 4e59571..d7dca2d 100644 --- a/test/corpus/integration/function_definition.txt +++ b/test/corpus/integration/function_definition.txt @@ -184,8 +184,7 @@ def fun(x), do: x (arguments)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer))))) (call (identifier) @@ -196,8 +195,7 @@ def fun(x), do: x (identifier))) (keywords (pair - (keyword - (atom_literal)) + (keyword) (identifier)))))) ===================================== diff --git a/test/corpus/integration/kernel.txt b/test/corpus/integration/kernel.txt index f3130ed..770800f 100644 --- a/test/corpus/integration/kernel.txt +++ b/test/corpus/integration/kernel.txt @@ -17,8 +17,7 @@ for n <- [1, 2], do: n * 2 (integer))) (keywords (pair - (keyword - (atom_literal)) + (keyword) (binary_operator (identifier) (integer))))))) @@ -46,8 +45,7 @@ end (arguments))) (keywords (pair - (keyword - (atom_literal)) + (keyword) (call (dot (alias) @@ -77,18 +75,16 @@ for <>, c != ?\s, into: "", do: <> (binary_operator (identifier) (string - (string_content)))) + (quoted_content)))) (binary_operator (identifier) (char)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (string)) (pair - (keyword - (atom_literal)) + (keyword) (bitstring (identifier))))))) @@ -114,8 +110,7 @@ end (integer))) (keywords (pair - (keyword - (atom_literal)) + (keyword) (map)))) (do_block (stab_clause diff --git a/test/corpus/integration/module_definition.txt b/test/corpus/integration/module_definition.txt index 883fd0e..4f31cd5 100644 --- a/test/corpus/integration/module_definition.txt +++ b/test/corpus/integration/module_definition.txt @@ -35,8 +35,7 @@ end (call (identifier) (arguments - (atom - (atom_literal))) + (atom)) (do_block))) ===================================== @@ -76,7 +75,7 @@ end (identifier) (arguments (string - (string_content))))) + (quoted_content))))) (call (identifier) (arguments @@ -91,7 +90,7 @@ end (identifier) (arguments (string - (string_content))))) + (quoted_content))))) (unary_operator (call (identifier) @@ -133,8 +132,7 @@ end (identifier))) (keywords (pair - (keyword - (atom_literal)) + (keyword) (binary_operator (identifier) (identifier))))))))) diff --git a/test/corpus/integration/spec.txt b/test/corpus/integration/spec.txt index 9278533..113c205 100644 --- a/test/corpus/integration/spec.txt +++ b/test/corpus/integration/spec.txt @@ -71,17 +71,14 @@ with literals (map_content (keywords (pair - (keyword - (atom_literal)) + (keyword) (identifier))))))) (binary_operator (tuple - (atom - (atom_literal)) + (atom) (identifier)) (tuple - (atom - (atom_literal)) + (atom) (identifier)))))))) ===================================== @@ -166,12 +163,10 @@ with type guard (identifier))) (keywords (pair - (keyword - (atom_literal)) + (keyword) (identifier)) (pair - (keyword - (atom_literal)) + (keyword) (identifier)))))))) ===================================== @@ -245,7 +240,6 @@ nonempty list (identifier)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (identifier))))))) (ERROR)) diff --git a/test/corpus/term/alias.txt b/test/corpus/term/alias.txt index b7dddbc..ad7d8da 100644 --- a/test/corpus/term/alias.txt +++ b/test/corpus/term/alias.txt @@ -82,17 +82,3 @@ __MODULE__.Child (dot (special_identifier) (alias))) - -===================================== -[error] does not support characters outside ASCII -===================================== - -Ólá -Olá - ---- - -(source - (ERROR - (atom_literal) - (atom_literal))) diff --git a/test/corpus/term/atom.txt b/test/corpus/term/atom.txt index b155a85..f8bdbe3 100644 --- a/test/corpus/term/atom.txt +++ b/test/corpus/term/atom.txt @@ -11,16 +11,11 @@ simple literal --- (source - (atom - (atom_literal)) - (atom - (atom_literal)) - (atom - (atom_literal)) - (atom - (atom_literal)) - (atom - (atom_literal))) + (atom) + (atom) + (atom) + (atom) + (atom)) ===================================== operators @@ -31,7 +26,7 @@ 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)) (atom (atom_literal)))) + (list (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom) (atom))) ===================================== special operator-like atoms @@ -43,18 +38,12 @@ special operator-like atoms (source (list - (atom - (atom_literal)) - (atom - (atom_literal)) - (atom - (atom_literal)) - (atom - (atom_literal)) - (atom - (atom_literal)) - (atom - (atom_literal)))) + (atom) + (atom) + (atom) + (atom) + (atom) + (atom))) ===================================== quoted atom @@ -66,11 +55,11 @@ quoted atom --- (source - (atom - (string_content) + (quoted_atom + (quoted_content) (escape_sequence)) - (atom - (string_content) + (quoted_atom + (quoted_content) (escape_sequence))) ===================================== @@ -83,13 +72,13 @@ interpolation --- (source - (atom - (string_content) + (quoted_atom + (quoted_content) (interpolation (identifier)) - (string_content)) - (atom - (string_content) + (quoted_content)) + (quoted_atom + (quoted_content) (interpolation (identifier)) - (string_content))) + (quoted_content))) diff --git a/test/corpus/term/bitstring.txt b/test/corpus/term/bitstring.txt index 771b14a..46a8529 100644 --- a/test/corpus/term/bitstring.txt +++ b/test/corpus/term/bitstring.txt @@ -17,7 +17,7 @@ single item (float)) (bitstring (string - (string_content)))) + (quoted_content)))) ===================================== multiple items @@ -36,7 +36,7 @@ multiple items (integer) (float) (string - (string_content)))) + (quoted_content)))) ===================================== size modifiers @@ -77,21 +77,21 @@ multiple modifiers (bitstring (binary_operator (string - (string_content)) + (quoted_content)) (binary_operator (identifier) (identifier)))) (bitstring (binary_operator (string - (string_content)) + (quoted_content)) (binary_operator (identifier) (identifier)))) (bitstring (binary_operator (string - (string_content)) + (quoted_content)) (binary_operator (identifier) (identifier)))) @@ -136,7 +136,7 @@ multiple components with modifiers (integer) (identifier))) (string - (string_content)) + (quoted_content)) (binary_operator (float) (identifier)) diff --git a/test/corpus/term/charlist.txt b/test/corpus/term/charlist.txt index 0658bc1..e60cf22 100644 --- a/test/corpus/term/charlist.txt +++ b/test/corpus/term/charlist.txt @@ -8,7 +8,7 @@ single line (source (charlist - (string_content))) + (quoted_content))) ===================================== multiple lines @@ -21,7 +21,7 @@ line 2' (source (charlist - (string_content))) + (quoted_content))) ===================================== interpolation @@ -37,20 +37,20 @@ interpolation (source (charlist - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content)) + (quoted_content)) (charlist - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content)) + (quoted_content)) (charlist - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content))) + (quoted_content))) ===================================== nested interpolation @@ -62,13 +62,13 @@ nested interpolation (source (charlist - (string_content) + (quoted_content) (interpolation (charlist - (string_content) + (quoted_content) (interpolation (integer)))) - (string_content))) + (quoted_content))) ===================================== escape sequence @@ -80,26 +80,26 @@ escape sequence (source (charlist - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) (escape_sequence) - (string_content))) + (quoted_content))) ===================================== escaped interpolation @@ -112,7 +112,7 @@ escaped interpolation (source (charlist (escape_sequence) - (string_content))) + (quoted_content))) ===================================== heredoc / charlist @@ -127,7 +127,7 @@ with 'quotes' (source (charlist - (string_content))) + (quoted_content))) ===================================== heredoc / interpolation @@ -141,10 +141,10 @@ hey #{name}! (source (charlist - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content))) + (quoted_content))) ===================================== heredoc / nested interpolation @@ -162,14 +162,14 @@ this is #{ (source (charlist - (string_content) + (quoted_content) (interpolation (charlist - (string_content) + (quoted_content) (interpolation (integer)) - (string_content))) - (string_content))) + (quoted_content))) + (quoted_content))) ===================================== heredoc / escaped delimiter @@ -187,15 +187,15 @@ heredoc / escaped delimiter (source (charlist - (string_content) + (quoted_content) (escape_sequence) - (string_content)) + (quoted_content)) (charlist - (string_content) + (quoted_content) (escape_sequence) (escape_sequence) (escape_sequence) - (string_content))) + (quoted_content))) ===================================== heredoc / escaped interpolation @@ -209,6 +209,6 @@ heredoc / escaped interpolation (source (charlist - (string_content) + (quoted_content) (escape_sequence) - (string_content))) + (quoted_content))) diff --git a/test/corpus/term/keyword_list.txt b/test/corpus/term/keyword_list.txt index e4f4d85..0cd5f9b 100644 --- a/test/corpus/term/keyword_list.txt +++ b/test/corpus/term/keyword_list.txt @@ -10,24 +10,19 @@ simple literal (list (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer))))) ===================================== @@ -42,8 +37,7 @@ trailing separator (list (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer))))) ===================================== @@ -58,17 +52,14 @@ with leading items (list (integer) (tuple - (atom - (atom_literal)) + (atom) (integer)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer))))) ===================================== @@ -83,16 +74,13 @@ operator key (list (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer))))) ===================================== @@ -107,28 +95,22 @@ special atom key (list (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer))))) ===================================== @@ -144,22 +126,18 @@ reserved token key (list (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))) (list (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer))))) ===================================== @@ -177,13 +155,13 @@ quoted key (list (keywords (pair - (keyword - (string_content) + (quoted_keyword + (quoted_content) (escape_sequence)) (integer)) (pair - (keyword - (string_content) + (quoted_keyword + (quoted_content) (escape_sequence)) (integer))))) @@ -202,18 +180,18 @@ key interpolation (list (keywords (pair - (keyword - (string_content) + (quoted_keyword + (quoted_content) (interpolation (identifier)) - (string_content)) + (quoted_content)) (integer)) (pair - (keyword - (string_content) + (quoted_keyword + (quoted_content) (interpolation (identifier)) - (string_content)) + (quoted_content)) (integer))))) ===================================== @@ -226,15 +204,14 @@ key interpolation (source (list - (keywords - (pair - (keyword - (atom_literal)) - (integer)) - (pair - (keyword - (atom_literal)) - (integer))) (ERROR + (keywords + (pair + (keyword) + (integer)) + (pair + (keyword) + (integer)))) + (binary_operator (integer) (integer)))) diff --git a/test/corpus/term/map.txt b/test/corpus/term/map.txt index 0914b22..8a187ee 100644 --- a/test/corpus/term/map.txt +++ b/test/corpus/term/map.txt @@ -22,12 +22,10 @@ from keywords (map_content (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -42,12 +40,11 @@ from arrow entries (map (map_content (binary_operator - (atom - (atom_literal)) + (atom) (integer)) (binary_operator (string - (string_content)) + (quoted_content)) (integer)) (binary_operator (identifier) @@ -66,16 +63,14 @@ from both arrow entries and keywords (map_content (binary_operator (string - (string_content)) + (quoted_content)) (integer)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -91,7 +86,7 @@ trailing separator (map_content (binary_operator (string - (string_content)) + (quoted_content)) (integer))))) ===================================== @@ -110,24 +105,22 @@ update syntax (identifier) (keywords (pair - (keyword - (atom_literal)) + (keyword) (string - (string_content))) + (quoted_content))) (pair - (keyword - (atom_literal)) + (keyword) (string - (string_content))))))) + (quoted_content))))))) (map (map_content (binary_operator (identifier) (binary_operator (string - (string_content)) + (quoted_content)) (string - (string_content))))))) + (quoted_content))))))) ===================================== [error] ordering @@ -139,19 +132,18 @@ update syntax (source (map - (map_content + (ERROR (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))) - (ERROR - (integer) - (integer)))) + (map_content + (binary_operator + (integer) + (integer))))) ===================================== [error] missing separator @@ -166,9 +158,9 @@ update syntax (map_content (binary_operator (string - (string_content)) + (quoted_content)) (ERROR (integer)) (binary_operator (string - (string_content)) + (quoted_content)) (integer)))))) diff --git a/test/corpus/term/string.txt b/test/corpus/term/string.txt index 18ec410..63c28f5 100644 --- a/test/corpus/term/string.txt +++ b/test/corpus/term/string.txt @@ -8,7 +8,7 @@ single line (source (string - (string_content))) + (quoted_content))) ===================================== multiple lines @@ -21,7 +21,7 @@ line 2" (source (string - (string_content))) + (quoted_content))) ===================================== interpolation @@ -37,20 +37,20 @@ interpolation (source (string - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content)) + (quoted_content)) (string - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content)) + (quoted_content)) (string - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content))) + (quoted_content))) ===================================== nested interpolation @@ -62,13 +62,13 @@ nested interpolation (source (string - (string_content) + (quoted_content) (interpolation (string - (string_content) + (quoted_content) (interpolation (integer)))) - (string_content))) + (quoted_content))) ===================================== escape sequence @@ -80,26 +80,26 @@ escape sequence (source (string - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) - (string_content) + (quoted_content) (escape_sequence) (escape_sequence) - (string_content))) + (quoted_content))) ===================================== escaped interpolation @@ -112,7 +112,7 @@ escaped interpolation (source (string (escape_sequence) - (string_content))) + (quoted_content))) ===================================== heredoc / string @@ -127,7 +127,7 @@ with "quotes" (source (string - (string_content))) + (quoted_content))) ===================================== heredoc / interpolation @@ -141,10 +141,10 @@ hey #{name}! (source (string - (string_content) + (quoted_content) (interpolation (identifier)) - (string_content))) + (quoted_content))) ===================================== heredoc / nested interpolation @@ -162,14 +162,14 @@ this is #{ (source (string - (string_content) + (quoted_content) (interpolation (string - (string_content) + (quoted_content) (interpolation (integer)) - (string_content))) - (string_content))) + (quoted_content))) + (quoted_content))) ===================================== heredoc / escaped delimiter @@ -187,15 +187,15 @@ heredoc / escaped delimiter (source (string - (string_content) + (quoted_content) (escape_sequence) - (string_content)) + (quoted_content)) (string - (string_content) + (quoted_content) (escape_sequence) (escape_sequence) (escape_sequence) - (string_content))) + (quoted_content))) ===================================== heredoc / escaped interpolation @@ -209,18 +209,6 @@ heredoc / escaped interpolation (source (string - (string_content) + (quoted_content) (escape_sequence) - (string_content))) - -===================================== -[error] heredoc / no whitespace -===================================== - -"""s""" - ---- - -(source - (ERROR - (identifier))) + (quoted_content))) diff --git a/test/corpus/term/struct.txt b/test/corpus/term/struct.txt index a32d819..9fb0b8b 100644 --- a/test/corpus/term/struct.txt +++ b/test/corpus/term/struct.txt @@ -26,12 +26,10 @@ from keywords (map_content (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -48,12 +46,11 @@ from arrow entries (alias)) (map_content (binary_operator - (atom - (atom_literal)) + (atom) (integer)) (binary_operator (string - (string_content)) + (quoted_content)) (integer)) (binary_operator (identifier) @@ -74,16 +71,14 @@ from both arrow entries and keywords (map_content (binary_operator (string - (string_content)) + (quoted_content)) (integer)) (keywords (pair - (keyword - (atom_literal)) + (keyword) (integer)) (pair - (keyword - (atom_literal)) + (keyword) (integer)))))) ===================================== @@ -101,7 +96,7 @@ trailing separator (map_content (binary_operator (string - (string_content)) + (quoted_content)) (integer))))) ===================================== @@ -121,15 +116,13 @@ update syntax (identifier) (keywords (pair - (keyword - (atom_literal)) + (keyword) (string - (string_content))) + (quoted_content))) (pair - (keyword - (atom_literal)) + (keyword) (string - (string_content))))))) + (quoted_content))))))) (map (struct (alias)) @@ -138,9 +131,9 @@ update syntax (identifier) (binary_operator (string - (string_content)) + (quoted_content)) (string - (string_content))))))) + (quoted_content))))))) ===================================== unused struct identifier @@ -212,8 +205,8 @@ with atom (source (map (struct - (atom - (string_content))))) + (quoted_atom + (quoted_content))))) ===================================== with call diff --git a/test/corpus/unicode.txt b/test/corpus/unicode.txt index 1b4b45a..3c79431 100644 --- a/test/corpus/unicode.txt +++ b/test/corpus/unicode.txt @@ -13,20 +13,15 @@ atom --- (source - (atom - (atom_literal)) - (atom - (string_content)) - (atom - (string_content)) - (atom - (atom_literal)) - (atom - (atom_literal)) - (atom - (atom_literal)) - (atom - (atom_literal))) + (atom) + (quoted_atom + (quoted_content)) + (quoted_atom + (quoted_content)) + (atom) + (atom) + (atom) + (atom)) ===================================== string @@ -43,17 +38,17 @@ string (source (string - (string_content)) + (quoted_content)) (string - (string_content)) + (quoted_content)) (string - (string_content)) + (quoted_content)) (string - (string_content)) + (quoted_content)) (string - (string_content)) + (quoted_content)) (string - (string_content))) + (quoted_content))) ===================================== charlist @@ -69,17 +64,17 @@ charlist (source (charlist - (string_content)) + (quoted_content)) (charlist - (string_content)) + (quoted_content)) (charlist - (string_content)) + (quoted_content)) (charlist - (string_content)) + (quoted_content)) (charlist - (string_content)) + (quoted_content)) (charlist - (string_content))) + (quoted_content))) ===================================== char